1 # Copyright (C) 2005-2008 OPEN CASCADE
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.
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.
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
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 # This Makefile is responsible of generating the client and server
20 # implementation of IDL interfaces for both C++ and python usage.
21 # The building process of the C++ files is in charge of each source
22 # package and then is not manage here.
24 include $(top_srcdir)/adm_local/unix/make_common_starter.am
26 BASEIDL_FILES = Sierpinsky.idl
28 # This variable defines the files to be installed
29 dist_salomeidl_DATA = $(BASEIDL_FILES)
31 # GUI idl common library
32 lib_LTLIBRARIES = libSalomeIDLSIERPINSKY.la
34 # Sources built from idl files
35 nodist_libSalomeIDLSIERPINSKY_la_SOURCES = \
38 SierpinskyDynSK.cc: SierpinskySK.cc
40 # header files must be exported: other modules have to use this library
41 nodist_salomeinclude_HEADERS = $(BASEIDL_FILES:%.idl=%.hh)
43 libSalomeIDLSIERPINSKY_la_CPPFLAGS = \
45 -I$(top_builddir)/salome_adm/unix \
46 -I$(top_builddir)/idl \
50 libSalomeIDLSIERPINSKY_la_LDFLAGS = -no-undefined -version-info=0:0:0
51 libSalomeIDLSIERPINSKY_la_LIBADD = \
52 $(KERNEL_LDFLAGS) -lSalomeIDLKernel \
55 # These variables defines the building process of CORBA files
56 OMNIORB_IDL = @OMNIORB_IDL@
57 OMNIORB_IDLCXXFLAGS = @OMNIORB_IDLCXXFLAGS@
58 OMNIORB_IDLPYFLAGS = \
59 @OMNIORB_IDLPYFLAGS@ \
60 -I$(top_builddir)/idl/salome \
61 -I$(KERNEL_ROOT_DIR)/idl/salome
66 -I$(top_builddir)/idl/salome \
67 -I$(KERNEL_ROOT_DIR)/idl/salome \
68 -I$(top_builddir)/salome_adm/unix
71 -I$(KERNEL_ROOT_DIR)/idl/salome
73 # potential problem on parallel make on the following - multiple outputs
74 SUFFIXES = .idl .hh SK.cc
76 $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
78 $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
80 install-exec-local: $(BASEIDL_FILES:%=$(top_srcdir)/idl/%)
81 $(INSTALL) -d $(DESTDIR)$(salomepythondir)
82 ls $^ | while read file; do \
83 $(OMNIORB_IDL) $(IDLPYFLAGS) -C$(DESTDIR)$(salomepythondir) $$file ; \
86 # uninstall-local removes too much, but it works in distcheck
88 rm -rf $(DESTDIR)$(salomepythondir)/*
91 -rm -f *.hh *.cc .depidl
93 # we use cpp to generate dependencies between idl files.
94 # option x c tells the preprocessor to consider idl as a c file.
95 # if an idl is modified, all idl dependencies are rebuilt
97 .depidl: $(BASEIDL_FILES)
99 @for dep in $^ dummy; do \
100 if [ $$dep != "dummy" ]; then \
101 echo Building dependencies for $$dep; \
102 $(CPP) $(C_DEPEND_FLAG) -x c -I$(srcdir) -I$(KERNEL_ROOT_DIR)/idl/salome $$dep 2>/dev/null | \
103 sed 's/\.o/\SK.cc/' >>$@; \