Salome HOME
integration of modifications from Gérald Nicolas
[modules/homard.git] / doc / Makefile.am
1 # Copyright (C) 2011-2012  CEA/DEN, EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 #  File   : Makefile.in
21 #  Author : Vasily Rusyaev (Open Cascade NN)
22 #  Module : doc
23 #
24 include $(top_srcdir)/adm_local/unix/make_common_starter.am
25
26 if SPHINX_IS_OK
27
28 homarddoc_DATA=html/index.html
29 html/index.html:$(RSTFILES)
30         make htm
31         make latex
32
33 endif
34
35 homarddocdir=$(docdir)/gui/HOMARD
36
37 SPHINXOPTS      =
38 SOURCEDIR       = $(srcdir)
39 SPHINXBUILD     = sphinx-build
40 PAPEROPT_a4     = -D latex_paper_size=a4
41 ALLSPHINXOPTS   = -d doctrees $(PAPEROPT_a4) $(SPHINXOPTS) $(SOURCEDIR)
42
43 htm:
44         mkdir -p html doctrees
45         $(SPHINXBUILD) -c $(top_builddir)/doc -b html $(ALLSPHINXOPTS) html
46         @echo
47         @echo "Build finished. The HTML pages are in html."
48
49 latex:
50         mkdir -p latex doctrees
51         $(SPHINXBUILD) -c $(top_builddir)/doc -b latex $(ALLSPHINXOPTS) latex
52         @echo
53         @echo "Build finished. The pages are in latex."
54         @echo "Go into latex and apply twice : pdflatex HOMARD.tex to produce HOMARD.pdf"
55
56 RSTFILES= \
57 glossaire.rst \
58 gui_create_boundary.rst \
59 gui_create_case.rst \
60 gui_create_hypothese.rst \
61 gui_create_iteration.rst \
62 gui_create_zone.rst \
63 gui_homard.rst \
64 gui_usage.rst \
65 index.rst \
66 intro.rst \
67 tui_create_boundary.rst \
68 tui_create_case.rst \
69 tui_create_hypothese.rst \
70 tui_create_iteration.rst \
71 tui_create_zone.rst \
72 tui_homard.rst \
73 tui_usage.rst \
74 tutorials.rst
75
76 EXTRA_DIST+= $(RSTFILES) images files
77
78 usr_docs: 
79         make install-data-local
80
81 docs: usr_docs
82
83 install-data-local:
84         $(INSTALL) -d $(DESTDIR)$(homarddocdir)
85         if test -d "html"; then b=; else b="$(srcdir)/"; fi; \
86         if test -d $$b"html"; then cp -rf $$b"html"/* $(DESTDIR)$(homarddocdir); fi;
87
88 uninstall-local:
89         chmod -R +w $(DESTDIR)$(homarddocdir)
90         rm -rf $(DESTDIR)$(homarddocdir)/*
91
92 clean-local:
93         -rm -rf doctrees
94         if test -d "html"; then rm -rf html ; fi
95
96 dist-hook:
97         if test -d "html"; then b=; else b="$(srcdir)/"; fi; \
98         if test -d $$b"html"; then cp -rf $$b"html" $(distdir) ; fi