]> SALOME platform Git repositories - modules/homard.git/blob - doc/fr/Makefile.am
Salome HOME
Introduction de la doculmentation en anglais - phase 3
[modules/homard.git] / doc / fr / Makefile.am
1 # Copyright (C) 2011-2013  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 homarddoc_langue=fr
21 #
22 include $(top_srcdir)/adm_local/unix/make_common_starter.am
23
24 if SPHINX_IS_OK
25
26 homarddoc_DATA=html/index.html
27 html/index.html:$(RSTFILES) dummy
28
29 dummy:
30         make htm
31         make latex
32
33 endif
34
35 homarddocdir=$(docdir)/gui/HOMARD/$(homarddoc_langue)
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/$(homarddoc_langue) -b html $(ALLSPHINXOPTS) html
46         @echo
47         @echo "Build fini. Les pages HTML sont dans html."
48
49 latex:
50         mkdir -p latex doctrees
51         $(SPHINXBUILD) -c $(top_builddir)/doc/$(homarddoc_langue) -b latex $(ALLSPHINXOPTS) latex
52         @echo
53         @echo "Build fini. Les pages sont en latex."
54         @echo "Aller dans latex et appliquer deux fois : pdflatex HOMARD.tex pour produire HOMARD.pdf"
55
56 RSTFILES= \
57 index.rst \
58 glossaire.rst \
59 gui_create_boundary.rst \
60 gui_create_case.rst \
61 gui_create_hypothese.rst \
62 gui_create_iteration.rst \
63 gui_create_zone.rst \
64 gui_homard.rst \
65 gui_usage.rst \
66 gui_mesh_info.rst \
67 intro.rst \
68 tui_create_boundary.rst \
69 tui_create_case.rst \
70 tui_create_hypothese.rst \
71 tui_create_iteration.rst \
72 tui_create_zone.rst \
73 tui_homard.rst \
74 tui_usage.rst \
75 tutorials.rst
76
77 EXTRA_DIST += $(RSTFILES) images ../images ../files
78
79 usr_docs:
80         make install-data-local
81
82 docs: usr_docs
83
84 install-data-local:
85         $(INSTALL) -d $(DESTDIR)$(homarddocdir)
86         if test -d "html"; then b=; else b="$(srcdir)/"; fi; \
87         if test -d $$b"html"; then cp -rf $$b"html"/* $(DESTDIR)$(homarddocdir); fi;
88
89 uninstall-local:
90         chmod -R +w $(DESTDIR)$(homarddocdir)
91         rm -rf $(DESTDIR)$(homarddocdir)/*
92
93 clean-local:
94         -rm -rf doctrees
95         if test -d "html"; then rm -rf html ; fi
96         if test -d "latex"; then rm -rf latex ; fi
97
98 dist-hook:
99         if test -d "html"; then b=; else b="$(srcdir)/"; fi; \
100         if test -d $$b"html"; then cp -rf $$b"html" $(distdir) ; fi