1 #=======================================================================
2 # This section of this makefile comes from the file
3 # 'adm/unix/make_conclude' which was generated with config.status
4 # from file adm/unix/make_conclude.in
5 #=======================================================================
8 # Authors : Patrick GOLDBRONN (CEA) - Marc Tajchman (CEA)
16 # transform idl reference in appropriate obj file
17 LIB_CLIENT_SRC = $(LIB_CLIENT_IDL:%.idl=%$(IDL_CLN_CXX))
18 LIB_SERVER_SRC = $(LIB_SERVER_IDL:%.idl=%$(IDL_SRV_CXX))
19 LIB_MOC_SRC = $(LIB_MOC:%.h=%_moc.cxx)
20 LIB_SRC+=$(LIB_MOC_SRC)
21 LIB_SWIG_SRC = $(SWIG_DEF:%.i=%_wrap.cxx)
22 LIB_DEP= $(LIB_SRC) $(LIB_CLIENT_SRC) $(LIB_SERVER_SRC) $(LIB_SWIG_SRC)
24 LIB_CLIENT_OBJ = $(LIB_CLIENT_IDL:%.idl=%$(IDL_CLN_OBJ))
25 LIB_SERVER_OBJ = $(LIB_SERVER_IDL:%.idl=%$(IDL_SRV_OBJ))
28 # transform c file in appropriate libtool obj file (.c, .cc and .cxx)
29 LIB_OBJ_C = $(patsubst %.c, %.lo, $(filter %.c, $(LIB_SRC)))
30 LIB_OBJ_CC = $(patsubst %.cc, %.lo, $(filter %.cc, $(LIB_SRC)))
31 LIB_OBJ_CXX = $(patsubst %.cxx, %.lo, $(filter %.cxx, $(LIB_SRC)))
32 LIB_SWIG_OBJ = $(LIB_SWIG_SRC:%.cxx=%.lo)
33 LIB_OBJ_F = $(patsubst %.f, %.lo, $(filter %.f, $(LIB_SRC)))
35 # all libtool obj file in library
36 LIB_OBJ = $(LIB_OBJ_CXX) $(LIB_OBJ_CC) $(LIB_OBJ_C) $(LIB_CLIENT_OBJ:%.o=%.lo) $(LIB_SERVER_OBJ:%.o=%.lo) $(LIB_SWIG_OBJ) $(LIB_OBJ_F)
38 # LIB_BUILD = $(LIB:%.la=$(top_builddir)/lib@LIB_LOCATION_SUFFIX@/salome/%.la)
39 LIB_BUILD = $(patsubst %.la, $(top_builddir)/lib@LIB_LOCATION_SUFFIX@/salome/%.la, $(filter %.la, $(LIB)))
40 LIB_BUILD_A = $(patsubst %.a, $(top_builddir)/lib@LIB_LOCATION_SUFFIX@/salome/%.a, $(filter %.a, $(LIB)))
42 ifneq ($(findstring cmodule.la,$(filter %.la, $(LIB))),)
43 LIB_SWIG = $(patsubst %cmodule.la,%.so, $(filter %.la, $(LIB)))
48 lib: $(LIB_BUILD) $(LIB_CLIENT_PY)
49 # we don't build static library !
51 $(LIB_BUILD): $(top_builddir)/lib@LIB_LOCATION_SUFFIX@/salome/%.la: %.la
53 -$(RM) $(patsubst %.la, %.so, $@)
54 -$(RM) $(patsubst %.la, %.a, $@)
55 ln -sf $(CURDIR)/$< $@ || true
56 ln -sf $(patsubst %.la, %.so, $(CURDIR)/.libs/$<) \
57 $(patsubst %.la, %.so, $@) || true
58 ln -sf $(patsubst %.la, %.so, $(CURDIR)/.libs/$<).0 \
59 $(patsubst %.la, %.so, $@).0 || true
61 if ! test -z $(LIB_SWIG) ; then \
62 ln -sf $(patsubst %.la,%.so, $(CURDIR)/.libs/$<) $(top_builddir)/lib@LIB_LOCATION_SUFFIX@/salome/_$(LIB_SWIG) || true;\
65 $(LIB_BUILD_A): $(top_builddir)/lib@LIB_LOCATION_SUFFIX@/salome/%.a: %.a
67 ln -sf $(CURDIR)/$< $@ || true
70 @$(LT) --mode=link $(CXX) -rpath $(libdir) -o $@ $(CXXFLAGS) $(LIB_OBJ) $(LDFLAGS) $(LIBS)
72 # transform idl reference in appropriate obj file
73 BIN_CLIENT_SRC = $(BIN_CLIENT_IDL:%.idl=%$(IDL_CLN_CXX))
74 BIN_SERVER_SRC = $(BIN_SERVER_IDL:%.idl=%$(IDL_SRV_CXX))
75 BIN_MOC_SRC = $(BIN_MOC:%.h=%_moc.cxx)
76 BIN_SRC+=$(BIN_MOC_SRC)
77 BIN_DEP=$(BIN:%=%.cxx) $(BIN_SRC) $(BIN_CLIENT_SRC) $(BIN_SERVER_SRC)
79 BIN_CLIENT_OBJ = $(BIN_CLIENT_IDL:%.idl=%$(IDL_CLN_OBJ))
80 BIN_SERVER_OBJ = $(BIN_SERVER_IDL:%.idl=%$(IDL_SRV_OBJ))
81 # transform c file in appropriate libtool obj file (.c)
82 BIN_OBJ_C = $(patsubst %.c, %.o, $(filter %.c, $(BIN_SRC)))
83 # transform c++ file in appropriate libtool obj file (.cc and .cxx)
84 BIN_OBJ_CC = $(patsubst %.cc, %.o, $(filter %.cc, $(BIN_SRC)))
85 BIN_OBJ_CXX = $(patsubst %.cxx, %.o, $(filter %.cxx, $(BIN_SRC)))
86 # all obj file in bin target
87 BIN_OBJ = $(BIN_OBJ_CC) $(BIN_OBJ_CXX) $(BIN_OBJ_C) $(BIN_CLIENT_OBJ) $(BIN_SERVER_OBJ)
89 bin: $(BIN:%=$(top_builddir)/bin/salome/%) $(BIN) $(LIB) pyscripts sharedpyscripts
91 BIN_LIB=$(LIB:lib%.la=-l%)
93 $(BIN:%=$(top_builddir)/bin/salome/%) $(TEST_PROGS:%=$(top_builddir)/bin/salome/%): $(top_builddir)/bin/salome/%: %
95 ln -sf $(CURDIR)/$< $@
97 $(BIN) $(TEST_PROGS): %: %.lo $(BIN_OBJ)
98 $(CXX) $(CXXFLAGS) -o $@ $^ $(BIN_LIB) $(LDFLAGSFORBIN) $(LIBSFORBIN)
100 # copy python scripts in $(top_builddir)/bin/salome
102 DEST_PYSCRIPTS = $(EXPORT_PYSCRIPTS:%=$(top_builddir)/bin/salome/%)
103 pyscripts: $(DEST_PYSCRIPTS)
104 $(DEST_PYSCRIPTS): $(top_builddir)/bin/salome/%: %
107 # copy pyqt files in $(PYTHON_SHARED_SITE)
109 PYTHON_SHARED_SITE=$(top_builddir)/lib@LIB_LOCATION_SUFFIX@/python$(PYTHON_VERSION)/site-packages/salome/shared_modules
111 $(PYTHON_SHARED_SITE):
114 DEST_SHAREDPYSCRIPTS = $(EXPORT_SHAREDPYSCRIPTS:%=$(PYTHON_SHARED_SITE)/%)
115 sharedpyscripts: $(PYTHON_SHARED_SITE) $(DEST_SHAREDPYSCRIPTS)
116 $(DEST_SHAREDPYSCRIPTS): $(PYTHON_SHARED_SITE)/%: %
123 test: $(LIB) $(TEST_PROGS:%=$(top_builddir)/bin/salome/%)
126 # copy header file in $(inc_builddir)
128 DEST_HEADERS = $(EXPORT_HEADERS:%=$(inc_builddir)/%)
130 $(DEST_HEADERS): $(inc_builddir)/%: %
133 # build resources file (icons and messages) : .qm file from .po file
134 resources: $(PO_FILES:%.po=$(top_builddir)/share/salome/resources/$(MODULE_NAME)/%.qm)
136 # Make installation directories if they don't exist.
137 $(libdir) $(includedir) $(bindir) $(datadir) $(idldir) $(sharedpydir):
138 $(INSTALL) -d $@ && chmod 755 $@
140 # Install the library, the public header files, and programs.
141 install: $(LIB) $(BIN) $(TEST_PROGS) $(libdir) $(includedir) $(bindir) $(datadir) $(idldir) install-python install-sharedpyqt install-qm
142 @for f in X $(LIB); do \
143 if test $$f != X; then \
144 ($(LT_INSTALL_LIB) $$f $(libdir)/. || exit 1); \
147 @if ! test -z $(LIB_SWIG) ; then \
148 (cd $(libdir); ln -sf $(patsubst %.so, %cmodule.so, $(LIB_SWIG)) _$(LIB_SWIG) || true); \
150 @for f in X $(BIN); do \
151 if test $$f != X; then \
152 ($(LT_INSTALL_PROG) $$f $(bindir)/. || exit 1); \
155 # Install tests programmes in bindir
156 @for f in X $(TEST_PROGS); do \
157 if test $$f != X; then \
158 ($(LT_INSTALL_PROG) $$f $(bindir)/. || exit 1); \
161 # Install exported includes in includedir
162 @for f in X $(EXPORT_HEADERS:%=$(srcdir)/%); do \
163 if test $$f != X; then \
164 (cp -p -f $$f $(includedir) || exit 1); \
168 # Install python script in $(bindir)
169 install-python: $(bindir) $(EXPORT_PYSCRIPTS:%=install-%)
171 $(EXPORT_PYSCRIPTS:%=install-%): install-%: %
172 $(INSTALL_PROGRAM) $< $(bindir)/.
174 #install-python: $(bindir) $(EXPORT_PYSCRIPTS)
175 # @for f in X $(EXPORT_PYSCRIPTS); do \
176 # if test $$f != X; then \
177 # ($(INSTALL_PROGRAM) $$f $(bindir)/. || exit 1); \
181 # Install pyqt script in $(install-sharedpyqt)
182 install-sharedpyqt: $(sharedpydir) $(EXPORT_SHAREDPYSCRIPTS:%=install-%)
184 $(EXPORT_SHAREDPYSCRIPTS:%=install-%): install-%: %
185 $(INSTALL_PROGRAM) $< $(sharedpydir)/.
188 # generic rule to install .qm files :
189 install-qm: resources
190 $(INSTALL) -d $(datadir)/resources/$(MODULE_NAME)
191 @for f in X $(PO_FILES:%.po=$(top_builddir)/share/salome/resources/$(MODULE_NAME)/%.qm); do \
192 if test $$f != X; then \
193 ($(INSTALL_DATA) $$f $(datadir)/resources/$(MODULE_NAME)/. || exit 1); \
197 # Removes those things that `make install' (would have) installed.
199 @if test "X$(LIB)" != X; then \
200 for f in $(LIB); do \
201 $(LT_UNINSTALL) $(libdir)/$$f; \
204 @if test "X$(BIN)" != X; then \
205 for f in $(BIN); do \
206 $(LT_UNINSTALL) $(bindir)/$$f; \
209 @for f in X $(TEST_PROGS); do \
210 if test $$f != X; then \
211 $(LT_UNINSTALL) $(bindir)/$$f; \
214 # Uninstall exported includes in includedir
215 @for f in X $(EXPORT_HEADERS); do \
216 if test $$f != X; then \
217 $(LT_UNINSTALL) $(includedir)/$$f; \
220 # Uninstall python script in $(bindir)
221 @for f in X $(EXPORT_PYSCRIPTS); do \
222 if test $$f != X; then \
223 $(LT_UNINSTALL) $(bindir)/$$f ; \
227 # Uninstall pyqt script in $(sharedpydir)
228 @for f in X $(EXPORT_SHAREDPYSCRIPTS); do \
229 if test $$f != X; then \
230 $(LT_UNINSTALL) $(sharedpydir)/$$f ; \
235 @for f in X $(PO_FILES:%.po=%.qm); do \
236 if test $$f != X; then \
237 $(LT_UNINSTALL) $(datadir)/resources/$(MODULE_NAME)/$$f ; \
241 # remove all dependencies files
246 # Removes temporary files without removing the final target files. That is,
247 # remove things like object files but not libraries or executables.
249 mostlyclean: cleandep
250 -$(RM) $(LIB_OBJ) $(LIB_OBJ:.lo=.o)
251 -$(RM) $(BIN_OBJ) $(BIN:%=%.o)
252 -$(RM) $(TEST_OBJ) $(TEST_OBJ:.lo=.o)
253 -$(RM) $(PROG_OBJ) $(PROG_OBJ:.lo=.o) $(MOSTLYCLEAN)
255 # Like `mostlyclean' except it also removes the final targets: things like
256 # libraries and executables. This target doesn't remove any file that
257 # is part of the SALOME distribution.
260 -$(RM) $(LIB) $(TEST_PROGS) $(BIN) $(CLEAN)
261 -$(RM) TAGS *~ *# core *.core
263 -$(RM) $(top_builddir)/lib@LIB_LOCATION_SUFFIX@/salome/$(LIB)
264 -$(RM) $(patsubst %,$(top_builddir)/bin/salome/%, $(BIN))
265 -$(RM) $(patsubst %.la, %.so, $(top_builddir)/lib@LIB_LOCATION_SUFFIX@/salome/$(LIB))
266 -$(RM) $(patsubst %.la, %.a, $(top_builddir)/lib@LIB_LOCATION_SUFFIX@/salome/$(LIB))
267 # remove idl generated files (sources)
268 -$(RM) $(LIB_CLIENT_SRC) $(LIB_SERVER_SRC) $(BIN_CLIENT_SRC) $(BIN_SERVER_SRC)
269 # remove idl generated files (headers)
270 -$(RM) $(LIB_CLIENT_IDL:%.idl=%$(IDL_CLN_H)) $(LIB_SERVER_IDL:%.idl=%$(IDL_SRV_H))
271 -$(RM) $(BIN_CLIENT_IDL:%.idl=%$(IDL_CLN_H)) $(BIN_SERVER_IDL:%.idl=%$(IDL_SRV_H))
272 -$(RM) $(LIB_MOC_SRC) $(BIN_MOC_SRC)
273 -$(RM) $(LIB_SWIG_SRC)
275 # Like `clean' except it also removes files that were created by running
276 # configure. If you've unpacked the source and built without creating
277 # any other files, then `make distclean' will leave only the files that were
278 # in the distribution.
282 -$(RM) $(PO_FILES:%.po=%.qm) $(PO_FILES:%.po=$(top_builddir)/share/salome/resources/$(MODULE_NAME)/%.qm)
283 #remove include files
284 -$(RM) $(DEST_HEADERS)
285 -$(RM) $(DISTCLEAN) *.bak *.old *.new .dep*
286 @if test -f $(srcdir)/Makefile.in; then \
287 (@SETX@; $(RM) Makefile); \
293 $(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $<
296 $(LT) --mode=compile $(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $<
299 $(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $<
302 $(LT) --mode=compile $(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $<
305 $(CC) $(CFLAGS) $(CPPFLAGS) -c $<
308 $(LT_COMPILE) $(CFLAGS) $(CPPFLAGS) -c $<
311 $(FC) $(FFLAGS) -c $< -o $@
314 $(LT) --mode=compile $(FC) $(FFLAGS) -c $<
320 $(UIC) -o $@ -i $*.h $<
327 $(SWIG) $(SWIG_FLAGS) -o $@ $<
329 $(top_builddir)/share/salome/resources/$(MODULE_NAME)/%.qm: %.po
332 #------------------------------------------------------------------------------
333 # The following section of this makefile contains dependencies between the
334 # source files and the header files. If GNU make and GCC are being used then
335 # the dependencies are in the form of rules that cause the information to
336 # be kept updated automatically. Otherwise the dependencies are listed
337 # explicitly and come from the `.distdep' files in the various directories.
338 # These files are part of the distribution and are generated automatically on
340 #------------------------------------------------------------------------------