Salome HOME
Merge from V6_3_BR 06/06/2011
[modules/smesh.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
24 include $(top_srcdir)/adm_local/unix/make_common_starter.am
25
26 pydocdir = $(docdir)/tui/SMESH/docutils
27
28 RSTFILES = \
29         index.rst \
30         overview.rst \
31         docapi.rst
32
33 EXTRA_DIST += $(RSTFILES)
34
35 SPHINXOPTS      =
36 SOURCEDIR       = $(srcdir)
37 SPHINXBUILD     = sphinx-build
38 PAPEROPT_a4     = -D latex_paper_size=a4
39 ALLSPHINXOPTS   = -d doctrees $(PAPEROPT_a4) $(SPHINXOPTS) $(SOURCEDIR)
40
41 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
42
43 SPHINX_LD_LIBRARY_PATH = $(KERNEL_ROOT_DIR)/lib/salome:$(OMNIORB_ROOT)/lib
44
45
46 .PHONY: latex
47
48 if SPHINX_IS_OK
49
50 html/index.html:$(RSTFILES)
51         mkdir -p html doctrees
52         PYTHONPATH=$(SPHINX_PYTHONPATH):${PYTHONPATH} \
53         LD_LIBRARY_PATH=$(SPHINX_LD_LIBRARY_PATH):${LD_LIBRARY_PATH} \
54         $(SPHINXBUILD) -c $(top_builddir)/doc/docutils -W -b html $(ALLSPHINXOPTS) html
55         @echo
56         @echo "Build finished. The HTML pages are in html."
57
58 else
59
60 html/index.html:
61         @echo "Documentation for Python package not built. Sphinx was not present at configure time."
62
63 endif
64
65 latex:
66         mkdir -p latex doctrees
67         PYTHONPATH=$(SPHINX_PYTHONPATH):${PYTHONPATH} \
68         LD_LIBRARY_PATH=$(SPHINX_LD_LIBRARY_PATH):${LD_LIBRARY_PATH} \
69         $(SPHINXBUILD) -c $(top_builddir)/doc/docutils -W -b latex $(ALLSPHINXOPTS) latex
70         @echo
71         @echo "Build finished; the LaTeX files are in latex."
72         @echo "Run \`make all-pdf' or \`make all-ps' in that directory to" \
73               "run these through (pdf)latex."
74
75 install-data-local: html/index.html
76         test -z $(pydocdir) || mkdir -p $(DESTDIR)$(pydocdir)
77         if test -d "html"; then b=; else b="$(srcdir)/"; fi; \
78         cp -rf $$b"html"/* $(pydocdir) ; \
79         if test -f $$b"latex"/smeshpy.pdf; then cp -f $$b"latex"/smeshpy.pdf $(pydocdir) ; fi;
80
81 uninstall-local:
82         -test -d $(pydocdir) && chmod -R +w $(pydocdir) && rm -rf $(pydocdir)/*
83
84 clean-local:
85         -rm -rf html latex doctrees
86         if test -d "html"; then rm -rf html ; fi
87
88 dist-hook:
89         -test -d html && cp -Rp html $(distdir)