Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/geom.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 #  File   : Makefile.in
21 #  Author : Vasily Rusyaev (Open Cascade NN)
22 #  Module : doc
23
24 top_srcdir=@top_srcdir@
25 top_builddir=../..
26 srcdir=@srcdir@
27 VPATH=.:@srcdir@
28
29 SUBDIRS= tui gui
30 SUBDIRSGUI= gui
31 SUBDIRSTUI= tui
32
33 @COMMENCE@
34
35 usr_docs:
36         @@SETX@; for d in $(SUBDIRSGUI); do     \
37            (cd $$d && $(MAKE) $@) || exit 1;    \
38         done; \
39
40 docs: usr_docs
41
42 dev_docs:
43         @@SETX@; for d in $(SUBDIRSTUI); do     \
44            (cd $$d && $(MAKE) $@) || exit 1;    \
45         done; \
46
47 clean:
48         @@SETX@; for d in $(SUBDIRS); do        \
49            if test -d $$d/GEOM; then            \
50               (cd $$d && $(MAKE) $@) || exit 1; \
51            fi;                                  \
52         done
53
54 distclean: clean
55         @@SETX@; for d in $(SUBDIRS); do        \
56            if test -d $$d/GEOM; then            \
57               (cd $$d && $(MAKE) $@) || exit 1; \
58            fi;                                  \
59         done
60
61 install:
62         $(MAKE) docs
63         @@SETX@; for d in $(SUBDIRS); do        \
64            if test -d $$d/GEOM; then            \
65               (cd $$d && $(MAKE) $@);           \
66            fi;                                  \
67         done
68
69 uninstall:
70         @@SETX@; for d in $(SUBDIRS); do        \
71            if test -d $$d/GEOM; then            \
72               (cd $$d && $(MAKE) $@) || exit 1; \
73            fi;                                  \
74         done; \