Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[samples/pyhello.git] / Makefile.in
1 #  Copyright (C) 2005  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 # -* Makefile *- 
20 #
21 # Author : C. Caremoli
22 # Date : 10/10/2003
23 # $Header$
24 #
25
26 # source path
27 top_srcdir=@top_srcdir@
28 top_builddir=.
29 srcdir=@srcdir@
30 VPATH=.:@srcdir@:@top_srcdir@/bin:./bin/salome:./resources:@top_srcdir@/resources:./bin:@top_srcdir@/idl
31
32
33 @COMMENCE@
34
35 SUBDIRS = idl src adm_local
36
37 RESOURCES_FILES = PYHELLOCatalog.xml PYHELLO.png PYHELLO_en.xml \
38                   ExecPYHELLO.png SalomeApp.xml
39
40 BIN_SCRIPT= VERSION runAppli myrunSalome.py
41
42 # copy header files in common directory
43
44 include_list = include/salome/SALOMEconfig.h
45
46 ifneq ($(HAVE_SSTREAM),yes)
47         include_list += include/salome/sstream
48 endif
49
50 inc: idl $(include_list)
51
52 bin: bin/salome/VERSION
53
54 bin/salome/VERSION : bin/VERSION
55         -$(RM) $@
56         $(LN_S) ../../$< $@
57
58 include/salome/SALOMEconfig.h: salome_adm/unix/SALOMEconfig.ref
59         -$(RM) $@
60         $(LN_S) ../../$< $@
61
62 # test if SALOMEconfig.h has changed (contents)
63 salome_adm/unix/SALOMEconfig.ref: salome_adm/unix/SALOMEconfig.h
64         @if ! [ -a $@ ]; then \
65           cp -p $< $@;        \
66         fi;                   \
67         if ! cmp $< $@; then  \
68           cp -p $< $@;        \
69         fi;                   \
70
71 include/salome/sstream: salome_adm/unix/sstream
72         -$(RM) $@
73         $(LN_S) ../../$< $@
74
75 depend: depend_idl
76
77 depend_idl:
78         (cd idl ; $(MAKE) $@) || exit 1
79
80 # doc is already build : if you want to had documents, go manually to doc and run 'make doc'
81 #doc:
82 #       (cd doc && $(MAKE) $@) || exit 1
83
84 install-end:
85 # finish libtool install
86 #       @$(LT) --mode=finish $(libdir)
87
88 install-include: $(include_list)
89         $(INSTALL) -d  $(includedir)
90         @for f in X $(include_list); do                         \
91            if test $$f != X; then                               \
92              ($(INSTALL_DATA) $$f $(includedir)/. || exit 1);   \
93            fi;                                                  \
94         done
95
96 # install script in $(bindir) :
97 install-bin: $(BIN_SCRIPT)
98         $(INSTALL) -d  $(bindir)
99         $(INSTALL_PROGRAM) $^ $(bindir)
100
101 uninstall: uninstall-idl
102
103 uninstall-idl:
104         $(RM) $(idldir)/*.idl
105
106 distclean: distclean-other
107
108 distclean-other:
109         -$(RM) salome_adm/unix/*~ salome_adm/unix/*% salome_adm/unix/*.bak salome_adm/unix/*.new salome_adm/unix/*.old
110         -$(RM) salome_adm/unix/make_* 
111         -$(RM) salome_adm/unix/depend salome_adm/unix/SALOMEconfig.h 
112         -$(RM) config.cache config.log config.status 
113
114 @MODULE@
115
116 install: install-bin install-include install-end
117