Salome HOME
Merge from V6_3_BR 06/06/2011
[samples/sierpinsky.git] / idl / Makefile.am
1 # Copyright (C) 2005-2011  OPEN CASCADE
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
20 # This Makefile is responsible of generating the client and server
21 # implementation of IDL interfaces for both C++ and python usage.
22 # The building process of the C++ files is in charge of each source
23 # package and then is not manage here.
24 #
25 include $(top_srcdir)/adm_local/unix/make_common_starter.am
26
27 BASEIDL_FILES = Sierpinsky.idl
28
29 # This variable defines the files to be installed
30 dist_salomeidl_DATA = $(BASEIDL_FILES)
31
32 # GUI idl common library
33 lib_LTLIBRARIES = libSalomeIDLSIERPINSKY.la
34
35 # Sources built from idl files
36 nodist_libSalomeIDLSIERPINSKY_la_SOURCES = \
37         SierpinskySK.cc \
38         SierpinskyDynSK.cc
39 SierpinskyDynSK.cc: SierpinskySK.cc
40
41 # header files must be exported: other modules have to use this library
42 nodist_salomeinclude_HEADERS = $(BASEIDL_FILES:%.idl=%.hh)
43
44 libSalomeIDLSIERPINSKY_la_CPPFLAGS = \
45         $(KERNEL_CXXFLAGS) \
46         -I$(top_builddir)/idl \
47         @CORBA_CXXFLAGS@ \
48         @CORBA_INCLUDES@
49
50 libSalomeIDLSIERPINSKY_la_LDFLAGS = -no-undefined -version-info=0:0:0
51 libSalomeIDLSIERPINSKY_la_LIBADD  = \
52         $(KERNEL_LDFLAGS) -lSalomeIDLKernel \
53         @CORBA_LIBS@
54
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
62
63 IDLCXXFLAGS = \
64         -bcxx \
65         @IDLCXXFLAGS@ \
66         -I$(top_builddir)/idl/salome \
67         -I$(KERNEL_ROOT_DIR)/idl/salome
68 IDLPYFLAGS  = \
69         @IDLPYFLAGS@ \
70         -I$(KERNEL_ROOT_DIR)/idl/salome
71
72 # potential problem on parallel make on the following - multiple outputs
73 SUFFIXES = .idl .hh SK.cc
74 .idlSK.cc:
75         $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
76 .idl.hh:
77         $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
78
79 install-exec-local: $(BASEIDL_FILES:%=$(top_srcdir)/idl/%)
80         $(INSTALL) -d  $(DESTDIR)$(salomepythondir)
81         ls $^ | while read file; do \
82           $(OMNIORB_IDL) $(IDLPYFLAGS) -C$(DESTDIR)$(salomepythondir) $$file ; \
83         done
84
85 # uninstall-local removes too much, but it works in distcheck
86 uninstall-local:
87         rm -rf $(DESTDIR)$(salomepythondir)/*
88
89 mostlyclean-local:
90         -rm -f *.hh *.cc .depidl
91
92 # we use cpp to generate dependencies between idl files.
93 # option x c tells the preprocessor to consider idl as a c file.
94 # if an idl is modified, all idl dependencies are rebuilt
95
96 .depidl: $(BASEIDL_FILES)
97         @echo "" > $@
98         @for dep in $^ dummy; do \
99           if [ $$dep != "dummy" ]; then \
100             echo Building dependencies for $$dep; \
101             $(CPP) $(C_DEPEND_FLAG) -x c -I$(srcdir) -I$(KERNEL_ROOT_DIR)/idl/salome $$dep 2>/dev/null | \
102             sed 's/\.o/\SK.cc/' >>$@; \
103           fi; \
104         done ;
105
106 -include .depidl