Salome HOME
0021196: [CEA 456] Integration and merge modification for debian packages
[modules/geom.git] / doc / docutils / Makefile.am
1 #  -*- coding: iso-8859-1 -*-
2 #  Copyright (C) 2007-2010  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 .PHONY : latex
28
29 if SPHINX_IS_OK
30
31 html/index.html:$(RSTFILES)
32         make htm
33
34 endif
35
36 EXTRA_DIST+= images
37
38 SPHINXOPTS      =
39 SOURCEDIR       = $(srcdir)
40 SPHINXBUILD     = sphinx-build
41 PAPEROPT_a4     = -D latex_paper_size=a4
42 ALLSPHINXOPTS   = -d doctrees $(PAPEROPT_a4) $(SPHINXOPTS) $(SOURCEDIR)
43
44 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
45
46 SPHINX_LD_LIBRARY_PATH = $(KERNEL_ROOT_DIR)/lib/salome:$(OMNIORB_ROOT)/lib
47
48 htm:
49         mkdir -p html doctrees
50         PYTHONPATH=$(SPHINX_PYTHONPATH):${PYTHONPATH} \
51         LD_LIBRARY_PATH=$(SPHINX_LD_LIBRARY_PATH):${LD_LIBRARY_PATH} \
52         $(SPHINXBUILD) -c $(top_builddir)/doc/docutils -W -b html $(ALLSPHINXOPTS) html
53         @echo
54         @echo "Build finished. The HTML pages are in html."
55
56 latex:
57         mkdir -p latex doctrees
58         PYTHONPATH=$(SPHINX_PYTHONPATH):${PYTHONPATH} \
59         LD_LIBRARY_PATH=$(SPHINX_LD_LIBRARY_PATH):${LD_LIBRARY_PATH} \
60         $(SPHINXBUILD) -c $(top_builddir)/doc/docutils -W -b latex $(ALLSPHINXOPTS) latex
61         @echo
62         @echo "Build finished; the LaTeX files are in latex."
63         @echo "Run \`make all-pdf' or \`make all-ps' in that directory to" \
64               "run these through (pdf)latex."
65
66 html:
67         mkdir -p $@
68
69 RSTFILES= \
70         index.rst \
71         overview.rst \
72         docapi.rst
73
74 EXTRA_DIST+= $(RSTFILES)
75
76 install-data-local: html/index.html
77         test -z $(pydocdir) || mkdir -p $(DESTDIR)$(pydocdir)
78         if test -d "html"; then b=; else b="$(srcdir)/"; fi; \
79         cp -rf $$b"html"/* $(pydocdir) ; \
80         if test -f $$b"latex"/geompy.pdf; then cp -f $$b"latex"/geompy.pdf $(pydocdir) ; fi;
81
82 uninstall-local:
83         -test -d $(pydocdir) && chmod -R +w $(pydocdir) && rm -rf $(pydocdir)/*
84
85 clean-local:
86         -rm -rf html latex doctrees
87         if test -d "html"; then rm -rf html ; fi
88
89 disthook :
90         -test -d html && cp -Rp html $(distdir)