Salome HOME
Update mail address
[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/ or email : webmaster.salome@opencascade.com
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 usr_docs:
40         @@SETX@; for d in $(SUBDIRSGUI); do     \
41            (cd $$d && $(MAKE) $@) || exit 1;    \
42         done; \
43
44 docs: usr_docs
45
46 dev_docs:
47         @@SETX@; for d in $(SUBDIRSTUI); do     \
48            (cd $$d && $(MAKE) $@) || exit 1;    \
49         done; \
50
51 clean:
52         @@SETX@; for d in $(SUBDIRS); do        \
53            if test -d $$d/SMESH; then           \
54               (cd $$d && $(MAKE) $@) || exit 1; \
55            fi;                                  \
56         done
57
58 distclean: clean
59         @@SETX@; for d in $(SUBDIRS); do        \
60            if test -d $$d/SMESH; then           \
61               (cd $$d && $(MAKE) $@) || exit 1; \
62            fi;                                  \
63         done
64
65 install:
66         $(MAKE) docs
67         @@SETX@; for d in $(SUBDIRS); do        \
68            if test -d $$d/SMESH; then           \
69               (cd $$d && $(MAKE) $@);           \
70            fi;                                  \
71         done
72
73 uninstall:
74         @@SETX@; for d in $(SUBDIRS); do        \
75            if test -d $$d/SMESH; then           \
76               (cd $$d && $(MAKE) $@) || exit 1; \
77            fi;                                  \
78         done; \