Salome HOME
Fix-up docutils conf file (version)
[modules/geom.git] / doc / docutils / Makefile.am
1 #  -*- coding: iso-8859-1 -*-
2 #  Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
3 #
4 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
5 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 #
7 #  This library is free software; you can redistribute it and/or
8 #  modify it under the terms of the GNU Lesser General Public
9 #  License as published by the Free Software Foundation; either
10 #  version 2.1 of the License.
11 #
12 #  This library is distributed in the hope that it will be useful,
13 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 #  Lesser General Public License for more details.
16 #
17 #  You should have received a copy of the GNU Lesser General Public
18 #  License along with this library; if not, write to the Free Software
19 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
20 #
21 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22
23 include $(top_srcdir)/adm_local/unix/make_common_starter.am
24
25 pydocdir = $(docdir)/tui/GEOM/docutils
26
27 RSTFILES = \
28         index.rst \
29         overview.rst \
30         docapi.rst
31
32 EXTRA_DIST += images $(RSTFILES)
33
34 SPHINXOPTS      =
35 SOURCEDIR       = $(srcdir)
36 SPHINXBUILD     = sphinx-build
37 PAPEROPT_a4     = -D latex_paper_size=a4
38 ALLSPHINXOPTS   = -d doctrees $(PAPEROPT_a4) $(SPHINXOPTS) $(SOURCEDIR)
39
40 SPHINX_PYTHONPATH = $(prefix)/lib/python$(PYTHON_VERSION)/site-packages/salome:$(prefix)/lib64/python$(PYTHON_VERSION)/site-packages/salome:$(KERNEL_ROOT_DIR)/bin/salome:$(KERNEL_ROOT_DIR)/lib/python$(PYTHON_VERSION)/site-packages/salome:$(KERNEL_ROOT_DIR)/lib64/python$(PYTHON_VERSION)/site-packages/salome:$(OMNIORB_ROOT)/lib/python$(PYTHON_VERSION)/site-packages:$(OMNIORB_ROOT)/lib64/python$(PYTHON_VERSION)/site-packages
41
42 SPHINX_LD_LIBRARY_PATH = $(KERNEL_ROOT_DIR)/lib/salome:$(OMNIORB_ROOT)/lib
43
44
45 .PHONY: latex
46
47 if SPHINX_IS_OK
48
49 html/index.html:$(RSTFILES)
50         mkdir -p html doctrees
51         PYTHONPATH=$(SPHINX_PYTHONPATH):${PYTHONPATH} \
52         LD_LIBRARY_PATH=$(SPHINX_LD_LIBRARY_PATH):${LD_LIBRARY_PATH} \
53         $(SPHINXBUILD) -c $(top_builddir)/doc/docutils -W -b html $(ALLSPHINXOPTS) html
54         @echo
55         @echo "Build finished. The HTML pages are in html."
56
57 else
58
59 html/index.html:
60         @echo "Documentation for Python package not built. Sphinx was not present at configure time."
61
62 endif
63
64 latex:
65         mkdir -p latex doctrees
66         PYTHONPATH=$(SPHINX_PYTHONPATH):${PYTHONPATH} \
67         LD_LIBRARY_PATH=$(SPHINX_LD_LIBRARY_PATH):${LD_LIBRARY_PATH} \
68         $(SPHINXBUILD) -c $(top_builddir)/doc/docutils -W -b latex $(ALLSPHINXOPTS) latex
69         @echo
70         @echo "Build finished; the LaTeX files are in latex."
71         @echo "Run \`make all-pdf' or \`make all-ps' in that directory to" \
72               "run these through (pdf)latex."
73
74 install-data-local: html/index.html
75         test -z $(pydocdir) || mkdir -p $(DESTDIR)$(pydocdir)
76         if test -d "html"; then b=; else b="$(srcdir)/"; fi; \
77         cp -rf $$b"html"/* $(pydocdir) ; \
78         if test -f $$b"latex"/geompy.pdf; then cp -f $$b"latex"/geompy.pdf $(pydocdir) ; fi;
79
80 uninstall-local:
81         -test -d $(pydocdir) && chmod -R +w $(pydocdir) && rm -rf $(pydocdir)/*
82
83 clean-local:
84         -rm -rf html latex doctrees
85         if test -d "html"; then rm -rf html ; fi
86
87 dist-hook:
88         -test -d html && cp -Rp html $(distdir)