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