]> SALOME platform Git repositories - modules/med.git/blob - Makefile.in
Salome HOME
removing this useless file.
[modules/med.git] / Makefile.in
1 # -* Makefile *- 
2 #
3 # Author : Patrick GOLDBRONN (CEA)
4 # Date : 28/06/2001
5 # $Header$
6 #
7
8 # source path
9 top_srcdir=@top_srcdir@
10 top_builddir=.
11 srcdir=@srcdir@
12 VPATH=.:@srcdir@:@top_srcdir@/bin:@top_srcdir@/resources:./bin:@top_srcdir@/idl:${KERNEL_ROOT_DIR}/idl/salome
13
14
15 @COMMENCE@
16
17 SUBDIRS = idl src
18
19 RESOURCES_FILES = \
20 MEDCatalog.xml \
21 MED_en.xml \
22 Data.png \
23 Infos.png \
24 Structure.png \
25 ModuleMed.png \
26 carre_en_quad4.med \
27 carre_en_quad4_seg2.med \
28 cube_hexa8.med \
29 cube_hexa8_quad4.med \
30 maill.0.med \
31 maillage_UniSegFam.med \
32 mesh.med \
33 pointe.med \
34 test19.med \
35 zzzz121b.med \
36 Darcy3_3D_H_10x10x10.sauve \
37 dx200_dy1_avec_2couches.sauve \
38 elle_2D_QT_10x10.sauve \
39 elle_2D_QT_2x2.sauve \
40 elle_2D_QT_40x40.sauve \
41 elle_2D_QT_4x4.sauve \
42 elle_3D_HPr_10x10x10.sauve \
43 elle_3D_HPr_2x2x2.sauve \
44 elle_3D_HPr_4x4x4.sauve \
45 inclusion_2d_raf.sauve \
46 inclusion_2d.sauve \
47 mail_ktest1-3-hexa.sauve \
48 mail_ktest1-3-tetra.sauve \
49 mail_ktest3-1.sauve \
50 mail_ktest3-2.sauve \
51 maillage_andra2_100elts.sauve \
52 maillage_cas2_2d.sauve \
53 maillage_cas4_234elts.sauve \
54 maillage_CHEMVAL_100elts.sauve \
55 maillage_CHEMVAL_40elts.sauve \
56 maillage_chemvalIV_cas1_100elts.sauve \
57 maillage_chemvalIV_cas1_40elts.sauve \
58 mail_test1-1-qua.sauve \
59 mail_test1-1-tri.sauve \
60 mail_test1-2-qua.sauve \
61 mail_test1-2-tri.sauve \
62 mail-test1-4-1.sauve \
63 mail-test1-4-2.sauve \
64 boitenew.inp \
65 Case1.inp \
66 cube.inp \
67 test3.inp \
68 titi.inp \
69 boitenew.cnc \
70 Case1.cnc \
71 cube.cnc \
72 test3.cnc \
73 titi.cnc \
74 boitenew.xyz \
75 Case1.xyz \
76 cube.xyz \
77 test3.xyz \
78 titi.xyz
79
80 BIN_SCRIPT= \
81 VERSION
82
83
84 # copy header files in common directory
85 ifeq ($(HAVE_SSTREAM),yes)
86   include_list=include/salome/SALOMEconfig.h
87 else
88   include_list=include/salome/SALOMEconfig.h include/salome/sstream
89 endif
90
91 inc: idl $(include_list)
92
93 include/salome/SALOMEconfig.h: salome_adm/unix/SALOMEconfig.ref
94         -$(RM) $@
95         $(LN_S) ../../$< $@
96
97 # test if SALOMEconfig.h has changed (contents)
98 salome_adm/unix/SALOMEconfig.ref: salome_adm/unix/SALOMEconfig.h
99         @if ! [ -a $@ ]; then \
100           cp -p $< $@;        \
101         fi;                   \
102         if ! cmp $< $@; then  \
103           cp -p $< $@;        \
104         fi;                   \
105
106 include/salome/sstream: salome_adm/unix/sstream
107         -$(RM) $@
108         $(LN_S) ../../$< $@
109
110 depend: depend_idl
111
112 depend_idl:
113         (cd idl ; $(MAKE) $@) || exit 1
114
115 # doc is already build : if you want to had documents, go manually to doc and run 'make doc'
116 #doc:
117 #       (cd doc && $(MAKE) $@) || exit 1
118
119 install-end:
120 # finish libtool install
121 #       @$(LT) --mode=finish $(libdir)
122
123 install-include: $(include_list)
124         $(INSTALL) -d  $(includedir)
125         @for f in X $(include_list); do                         \
126            if test $$f != X; then                               \
127              ($(INSTALL_DATA) $$f $(includedir)/. || exit 1);   \
128            fi;                                                  \
129         done
130
131 # install script in $(bindir) :
132 install-bin: $(BIN_SCRIPT)
133         $(INSTALL) -d  $(bindir)
134         if test $(BIN_SCRIPT)X != X; then                       \
135                 $(INSTALL_PROGRAM) $^ $(bindir);                \
136         fi
137
138 uninstall: uninstall-idl
139
140 uninstall-idl:
141         $(RM) $(idldir)/*.idl
142
143 distclean: distclean-other
144
145 distclean-other:
146         -$(RM) salome_adm/unix/*~ salome_adm/unix/*% salome_adm/unix/*.bak salome_adm/unix/*.new salome_adm/unix/*.old
147         -$(RM) salome_adm/unix/make_* 
148         -$(RM) salome_adm/unix/depend salome_adm/unix/SALOMEconfig.h 
149         -$(RM) config.cache config.log config.status 
150
151 @MODULE@
152
153 install: install-bin install-include install-end
154