]> SALOME platform Git repositories - modules/smesh.git/blob - doc/salome/Makefile.in
Salome HOME
Update GUI and TUI documentation for Mesh module
[modules/smesh.git] / doc / salome / Makefile.in
1 #  Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 #
4 #  This library is free software; you can redistribute it and/or
5 #  modify it under the terms of the GNU Lesser General Public
6 #  License as published by the Free Software Foundation; either
7 #  version 2.1 of the License.
8 #
9 #  This library is distributed in the hope that it will be useful,
10 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 #  Lesser General Public License for more details.
13 #
14 #  You should have received a copy of the GNU Lesser General Public
15 #  License along with this library; if not, write to the Free Software
16 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 #  See http://www.salome-platform.org/
19 #
20
21 # -* Makefile *- 
22 #
23 # Author : Patrick GOLDBRONN (CEA)
24 # Date : 30/11/2001
25 # $Header$
26 #
27 # source path
28 top_srcdir=@top_srcdir@
29 top_builddir=../..
30 srcdir=@srcdir@
31 VPATH=.:@srcdir@
32
33 SUBDIRS= tui gui
34 SUBDIRSTUI= tui
35 SUBDIRSGUI= gui
36
37 @COMMENCE@
38
39 docs:
40         @@SETX@; for d in $(SUBDIRS); do        \
41            (cd $$d && $(MAKE) $@) || exit 1;    \
42         done; \
43
44 usr_docs:
45         @@SETX@; for d in $(SUBDIRSGUI); do     \
46            (cd $$d && $(MAKE) $@) || exit 1;    \
47         done; \
48
49 dev_docs:
50         @@SETX@; for d in $(SUBDIRSTUI); do     \
51            (cd $$d && $(MAKE) $@) || exit 1;    \
52         done; \
53
54 clean:
55         @@SETX@; for d in $(SUBDIRS); do        \
56            (cd $$d && $(MAKE) $@) || exit 1;    \
57         done
58
59 distclean: clean
60         @@SETX@; for d in $(SUBDIRS); do        \
61            (cd $$d && $(MAKE) $@) || exit 1;    \
62         done
63
64 install:
65         $(MAKE) docs
66         (cd tui && $(MAKE) install);
67         (cd gui && $(MAKE) install);
68
69 uninstall:
70         @@SETX@; for d in $(SUBDIRS); do        \
71            (cd $$d && $(MAKE) $@) || exit 1;    \
72         done; \