Salome HOME
Fix configure problem (caused by previous integration).
[modules/smesh.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/SMESH/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 SPHINXOPTS      =
37 SOURCEDIR       = $(srcdir)
38 SPHINXBUILD     = sphinx-build
39 PAPEROPT_a4     = -D latex_paper_size=a4
40 ALLSPHINXOPTS   = -d doctrees $(PAPEROPT_a4) $(SPHINXOPTS) $(SOURCEDIR)
41
42 SPHINX_PYTHONPATH = $(prefix)/lib/python$(PYTHON_VERSION)/site-packages/salome:$(KERNEL_ROOT_DIR)/bin/salome:$(KERNEL_ROOT_DIR)/lib/python$(PYTHON_VERSION)/site-packages/salome:$(OMNIORB_ROOT)/lib/python$(PYTHON_VERSION)/site-packages
43
44 SPHINX_LD_LIBRARY_PATH = $(KERNEL_ROOT_DIR)/lib/salome:$(OMNIORB_ROOT)/lib
45
46 htm:
47         mkdir -p html doctrees
48         PYTHONPATH=$(SPHINX_PYTHONPATH):${PYTHONPATH}; \
49         LD_LIBRARY_PATH=$(SPHINX_LD_LIBRARY_PATH):${LD_LIBRARY_PATH}; \
50         $(SPHINXBUILD) -W -b html $(ALLSPHINXOPTS) html
51         @echo
52         @echo "Build finished. The HTML pages are in html."
53
54 latex:
55         mkdir -p latex doctrees
56         PYTHONPATH=$(SPHINX_PYTHONPATH):${PYTHONPATH}; \
57         LD_LIBRARY_PATH=$(SPHINX_LD_LIBRARY_PATH):${LD_LIBRARY_PATH}; \
58         $(SPHINXBUILD) -W -b latex $(ALLSPHINXOPTS) latex
59         @echo
60         @echo "Build finished; the LaTeX files are in latex."
61         @echo "Run \`make all-pdf' or \`make all-ps' in that directory to" \
62               "run these through (pdf)latex."
63
64 html:
65         mkdir -p $@
66
67 RSTFILES= \
68         index.rst \
69         overview.rst \
70         docapi.rst
71
72 EXTRA_DIST+= $(RSTFILES)
73
74 EXTRA_DIST+= \
75         conf.py 
76
77 install-data-local: html/index.html
78         test -z $(pydocdir) || mkdir -p $(DESTDIR)$(pydocdir)
79         if test -d "html"; then b=; else b="$(srcdir)/"; fi; \
80         cp -rf $$b"html"/* $(pydocdir) ; \
81         if test -f $$b"latex"/smeshpy.pdf; then cp -f $$b"latex"/smeshpy.pdf $(pydocdir) ; fi;
82
83 uninstall-local:
84         -test -d $(pydocdir) && chmod -R +w $(pydocdir) && rm -rf $(pydocdir)/*
85
86 clean-local:
87         -rm -rf html latex doctrees
88         if test -d "html"; then rm -rf html ; fi
89
90 disthook :
91         -test -d html && cp -Rp html $(distdir)