Salome HOME
c14f2c738ade65dfb79dd7957b744222a8898f8e
[samples/calculator.git] / idl / Makefile.am
1 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 #
6 #  This library is free software; you can redistribute it and/or
7 #  modify it under the terms of the GNU Lesser General Public
8 #  License as published by the Free Software Foundation; either
9 #  version 2.1 of the License.
10 #
11 #  This library is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 #  Lesser General Public License for more details.
15 #
16 #  You should have received a copy of the GNU Lesser General Public
17 #  License along with this library; if not, write to the Free Software
18 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 #
20 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22 # This Makefile is responsible of generating the client and server
23 # implementation of IDL interfaces for both C++ and python usage.
24 # The building process of the C++ files is in charge of each source
25 # package and then is not manage here.
26 #
27 include $(top_srcdir)/adm_local/unix/make_common_starter.am
28
29 BASEIDL_FILES = CALCULATOR_Gen.idl
30
31 # This variable defines the files to be installed
32 dist_salomeidl_DATA = $(BASEIDL_FILES)
33
34 # GUI idl common library
35 lib_LTLIBRARIES = libSalomeIDLCALCULATOR.la
36
37 # Sources built from idl files
38 nodist_libSalomeIDLCALCULATOR_la_SOURCES = \
39         CALCULATOR_GenSK.cc \
40         CALCULATOR_GenDynSK.cc
41 CALCULATOR_GenDynSK.cc: CALCULATOR_GenSK.cc
42
43 # header files must be exported: other modules have to use this library
44 nodist_salomeinclude_HEADERS = $(BASEIDL_FILES:%.idl=%.hh)
45
46 libSalomeIDLCALCULATOR_la_CPPFLAGS = \
47         $(KERNEL_CXXFLAGS) \
48         $(MED_CXXFLAGS) \
49         -I$(top_builddir)/salome_adm/unix \
50         -I$(top_builddir)/idl \
51         @CORBA_CXXFLAGS@ \
52         @CORBA_INCLUDES@
53
54 libSalomeIDLCALCULATOR_la_LDFLAGS = -no-undefined -version-info=0:0:0
55 libSalomeIDLCALCULATOR_la_LIBADD  = \
56         $(KERNEL_LDFLAGS) -lSalomeIDLKernel \
57         $(MED_LDFLAGS) -lSalomeIDLMED \
58         @CORBA_LIBS@
59
60 # These variables defines the building process of CORBA files
61 OMNIORB_IDL         = @OMNIORB_IDL@
62 OMNIORB_IDLCXXFLAGS = @OMNIORB_IDLCXXFLAGS@
63 OMNIORB_IDLPYFLAGS  = \
64         @OMNIORB_IDLPYFLAGS@ \
65         -I$(top_builddir)/idl/salome \
66         -I$(KERNEL_ROOT_DIR)/idl/salome \
67         -I$(MED_ROOT_DIR)/idl/salome
68
69 IDLCXXFLAGS = \
70         -bcxx \
71         @IDLCXXFLAGS@ \
72         -I$(top_builddir)/idl/salome \
73         -I$(KERNEL_ROOT_DIR)/idl/salome \
74         -I$(MED_ROOT_DIR)/idl/salome \
75         -I$(top_builddir)/salome_adm/unix
76 IDLPYFLAGS  = \
77         @IDLPYFLAGS@ \
78         -I$(KERNEL_ROOT_DIR)/idl/salome \
79         -I$(MED_ROOT_DIR)/idl/salome
80
81 # potential problem on parallel make on the following - multiple outputs
82 SUFFIXES = .idl .hh SK.cc
83 .idlSK.cc:
84         $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
85 .idl.hh:
86         $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
87
88 install-exec-local: $(BASEIDL_FILES:%=$(top_srcdir)/idl/%)
89         $(INSTALL) -d  $(DESTDIR)$(salomepythondir)
90         ls $^ | while read file; do \
91           $(OMNIORB_IDL) $(IDLPYFLAGS) -C$(DESTDIR)$(salomepythondir) $$file ; \
92         done
93
94 # uninstall-local removes too much, but it works in distcheck
95 uninstall-local:
96         rm -rf $(DESTDIR)$(salomepythondir)/*
97
98 mostlyclean-local:
99         -rm -f *.hh *.cc .depidl
100
101 # we use cpp to generate dependencies between idl files.
102 # option x c tells the preprocessor to consider idl as a c file.
103 # if an idl is modified, all idl dependencies are rebuilt
104
105 .depidl: $(BASEIDL_FILES)
106         @echo "" > $@
107         @for dep in $^ dummy; do \
108           if [ $$dep != "dummy" ]; then \
109             echo Building dependencies for $$dep; \
110             $(CPP) $(C_DEPEND_FLAG) -x c -I$(srcdir) -I$(KERNEL_ROOT_DIR)/idl/salome -I$(MED_ROOT_DIR)/idl/salome $$dep 2>/dev/null | \
111             sed 's/\.o/\SK.cc/' >>$@; \
112           fi; \
113         done ;
114
115 -include .depidl