Salome HOME
Merge from V5_1_4_BR 07/05/2010
[modules/kernel.git] / idl / Makefile.am
1 #  Copyright (C) 2007-2010  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
23 # This Makefile is responsible of generating the client and server
24 # implementation of IDL interfaces for both C++ and python usage.
25 # The building process of the C++ files is in charge of each source
26 # package and then is not manage here.
27 #
28 include $(top_srcdir)/salome_adm/unix/make_common_starter.am
29
30 AM_CXXFLAGS += -fPIC
31
32 BASEIDL_FILES = \
33   SALOME_Exception.idl \
34   SALOME_Comm.idl \
35   SALOME_ModuleCatalog.idl \
36   SALOME_RessourcesCatalog.idl \
37   SALOMEDS.idl \
38   SALOMEDS_Attributes.idl \
39   SALOME_Component.idl \
40   SALOME_ContainerManager.idl \
41   SALOME_TestComponent.idl \
42   SALOME_Registry.idl \
43   Logger.idl \
44   SALOME_GenericObj.idl \
45   SALOME_Session.idl \
46   SALOME_TestModuleCatalog.idl \
47   nstest.idl \
48   DSC_Engines.idl \
49   SALOME_Ports.idl \
50   SALOME_PyNode.idl \
51   Palm_Ports.idl \
52   SALOME_PACOExtension.idl \
53   SALOME_ParamPorts.idl
54
55 MPIIDL_FILES = \
56   SALOME_MPIObject.idl \
57   SALOME_MPIContainer.idl \
58   SALOME_TestMPIComponent.idl  
59
60 IDL_FILES = $(BASEIDL_FILES)
61 if MPI_IS_OK
62   IDL_FILES += $(MPIIDL_FILES)
63 endif
64
65 OTHER_IDL_FILES = \
66   TestNotif.idl \
67   TypeData.idl
68
69 # all the idl files are needed for make dist
70 EXTRA_DIST= $(BASEIDL_FILES) $(MPIIDL_FILES) $(OTHER_IDL_FILES) \
71             SALOME_Component.xml DSC_Engines.xml SALOME_Ports.xml \
72             SALOME_PACOExtension.xml SALOME_ParamPorts.xml
73
74 # This variable defines the files to be installed
75 salomeidl_DATA        = $(IDL_FILES)
76 nodist_salomeidl_DATA = Calcium_Ports.idl
77
78 # Sources built from idl files
79 # BUILT_SOURCE = first thing done on make all
80 # idl dependencies are checked and rebuilt first
81
82 BASEIDL_SOURCES =\
83   SALOME_ExceptionSK.cc \
84   SALOME_CommSK.cc \
85   SALOME_ModuleCatalogSK.cc \
86   SALOME_RessourcesCatalogSK.cc \
87   SALOMEDSSK.cc \
88   SALOMEDS_AttributesSK.cc \
89   SALOME_ComponentSK.cc \
90   SALOME_ContainerManagerSK.cc \
91   SALOME_TestComponentSK.cc \
92   SALOME_RegistrySK.cc \
93   LoggerSK.cc \
94   SALOME_GenericObjSK.cc \
95   SALOME_SessionSK.cc \
96   SALOME_TestModuleCatalogSK.cc \
97   nstestSK.cc \
98   DSC_EnginesSK.cc \
99   SALOME_PortsSK.cc \
100   SALOME_PyNodeSK.cc \
101   Calcium_PortsSK.cc \
102   Palm_PortsSK.cc \
103   SALOME_PACOExtensionSK.cc \
104   SALOME_ParamPortsSK.cc
105
106 DYNIDL_SRCS = \
107   SALOME_PortsDynSK.cc  Calcium_PortsDynSK.cc     SALOME_ContainerManagerDynSK.cc \
108   SALOME_CommDynSK.cc   SALOME_RegistryDynSK.cc   SALOME_ModuleCatalogDynSK.cc \
109   SALOMEDSDynSK.cc      SALOME_SessionDynSK.cc    SALOME_RessourcesCatalogDynSK.cc \
110   DSC_EnginesDynSK.cc   SALOME_ComponentDynSK.cc  SALOME_GenericObjDynSK.cc \
111   Palm_PortsDynSK.cc    SALOME_ExceptionDynSK.cc  SALOMEDS_AttributesDynSK.cc \
112   LoggerDynSK.cc        SALOME_PACOExtensionDynSK.cc SALOME_ParamPortsDynSK.cc SALOME_PyNodeDynSK.cc
113
114 MPIIDL_SOURCES = \
115   SALOME_MPIObjectSK.cc \
116   SALOME_MPIContainerSK.cc \
117   SALOME_TestMPIComponentSK.cc  
118
119 IDL_SOURCES = $(BASEIDL_SOURCES)
120 if MPI_IS_OK
121   IDL_SOURCES += $(MPIIDL_SOURCES)
122 endif
123
124
125 STATIDL_SOURCES=$(BASEIDL_SOURCES)
126 if MPI_IS_OK
127   STATIDL_SOURCES += $(MPIIDL_SOURCES)
128 endif
129
130 if MPI_IS_OK
131   DYNIDL_SRCS += SALOME_MPIObjectDynSK.cc SALOME_MPIContainerDynSK.cc SALOME_TestMPIComponentDynSK.cc
132 endif
133
134 $(DYNIDL_SRCS) : $(IDL_SOURCES)
135
136 # also install all generated headers to use result library from another modules
137 salomeinclude_DATA= $(STATIDL_SOURCES:%SK.cc=%.hh)
138
139 if WITH_PACO_PARALLEL
140 PAR = SALOME_ComponentPaCO.hxx SALOME_ComponentPaCO.cxx \
141       SALOME_PortsPaCO.hxx SALOME_PortsPaCO.cxx \
142       DSC_EnginesPaCO.hxx DSC_EnginesPaCO.cxx \
143       SALOME_PACOExtensionPaCO.hxx SALOME_PACOExtensionPaCO.cxx \
144       SALOME_ParamPortsPaCO.hxx SALOME_ParamPortsPaCO.cxx
145
146 PAR_INCLUDES = SALOME_Exception.hxx SALOME_GenericObj.hxx SALOMEDS.hxx SALOME_PyNode.hxx
147
148 PAR_LIB = libSalomeParallelIDLKernel.la
149
150 IDL_PACO = SALOME_ComponentPaCO.idl SALOME_PortsPaCO.idl DSC_EnginesPaCO.idl \
151            SALOME_ParamPortsPaCO.idl SALOME_PACOExtensionPaCO.idl
152
153 GEN_PACO = SALOME_ComponentPaCO_Engines_Container_server.cxx \
154            SALOME_ComponentPaCO_Engines_Container_client.cxx \
155            SALOME_ComponentPaCO_Engines_Component_server.cxx \
156            SALOME_ComponentPaCO_Engines_Component_client.cxx \
157            SALOME_ComponentPaCO_Engines_fileTransfer_server.cxx \
158            SALOME_ComponentPaCO_Engines_fileTransfer_client.cxx \
159            SALOME_ComponentPaCO_Engines_Salome_file_server.cxx \
160            SALOME_ComponentPaCO_Engines_Salome_file_client.cxx \
161            SALOME_PortsPaCO_Ports_Port_server.cxx \
162            SALOME_PortsPaCO_Ports_Port_client.cxx \
163            SALOME_PortsPaCO_Ports_Data_Port_server.cxx \
164            SALOME_PortsPaCO_Ports_Data_Port_client.cxx \
165            DSC_EnginesPaCO_Engines_DSC_server.cxx \
166            DSC_EnginesPaCO_Engines_DSC_client.cxx \
167            DSC_EnginesPaCO_Engines_Superv_Component_server.cxx \
168            DSC_EnginesPaCO_Engines_Superv_Component_client.cxx \
169            SALOME_PACOExtensionPaCO_Engines_Parallel_Component_server.cxx \
170            SALOME_PACOExtensionPaCO_Engines_Parallel_Component_client.cxx \
171            SALOME_PACOExtensionPaCO_Engines_PACO_Container_server.cxx \
172            SALOME_PACOExtensionPaCO_Engines_PACO_Container_client.cxx \
173            SALOME_PACOExtensionPaCO_Engines_Parallel_Salome_file_server.cxx \
174            SALOME_PACOExtensionPaCO_Engines_Parallel_Salome_file_client.cxx \
175            SALOME_PACOExtensionPaCO_Engines_Parallel_DSC_server.cxx \
176            SALOME_PACOExtensionPaCO_Engines_Parallel_DSC_client.cxx \
177            SALOME_ParamPortsPaCO_Ports_Param_Double_Port_server.cxx \
178            SALOME_ParamPortsPaCO_Ports_Param_Double_Port_client.cxx
179
180 INCLUDES_PACO = SALOME_ComponentPaCO_Engines_Container_server.hxx \
181                 SALOME_ComponentPaCO_Engines_Container_client.hxx \
182                 SALOME_ComponentPaCO_Engines_Component_server.hxx \
183                 SALOME_ComponentPaCO_Engines_Component_client.hxx \
184                 SALOME_ComponentPaCO_Engines_fileTransfer_server.hxx \
185                 SALOME_ComponentPaCO_Engines_fileTransfer_client.hxx \
186                 SALOME_ComponentPaCO_Engines_Salome_file_server.hxx \
187                 SALOME_ComponentPaCO_Engines_Salome_file_client.hxx \
188                 SALOME_ComponentPaCO.hxx \
189                 SALOME_Component.hxx \
190                 SALOME_PortsPaCO_Ports_Port_server.hxx \
191                 SALOME_PortsPaCO_Ports_Port_client.hxx \
192                 SALOME_PortsPaCO_Ports_Data_Port_server.hxx \
193                 SALOME_PortsPaCO_Ports_Data_Port_client.hxx \
194                 SALOME_PortsPaCO.hxx \
195                 SALOME_Ports.hxx \
196                 DSC_EnginesPaCO_Engines_DSC_server.hxx \
197                 DSC_EnginesPaCO_Engines_DSC_client.hxx \
198                 DSC_EnginesPaCO_Engines_Superv_Component_server.hxx \
199                 DSC_EnginesPaCO_Engines_Superv_Component_client.hxx \
200                 DSC_EnginesPaCO.hxx \
201                 DSC_Engines.hxx \
202                 SALOME_PACOExtensionPaCO_Engines_Parallel_Component_server.hxx \
203                 SALOME_PACOExtensionPaCO_Engines_Parallel_Component_client.hxx \
204                 SALOME_PACOExtensionPaCO_Engines_PACO_Container_server.hxx \
205                 SALOME_PACOExtensionPaCO_Engines_PACO_Container_client.hxx \
206                 SALOME_PACOExtensionPaCO_Engines_Parallel_Salome_file_server.hxx \
207                 SALOME_PACOExtensionPaCO_Engines_Parallel_Salome_file_client.hxx \
208                 SALOME_PACOExtensionPaCO_Engines_Parallel_DSC_server.hxx \
209                 SALOME_PACOExtensionPaCO_Engines_Parallel_DSC_client.hxx \
210                 SALOME_PACOExtensionPaCO.hxx \
211                 SALOME_PACOExtension.hxx \
212                 SALOME_ParamPortsPaCO_Ports_Param_Double_Port_server.hxx \
213                 SALOME_ParamPortsPaCO_Ports_Param_Double_Port_client.hxx \
214                 SALOME_ParamPortsPaCO.hxx \
215                 SALOME_ParamPorts.hxx
216
217 XML           = SALOME_Component.xml DSC_Engines.xml SALOME_Ports.xml \
218                 SALOME_PACOExtension.xml SALOME_ParamPorts.xml
219 endif
220
221 idldir = $(prefix)/idl/salome
222 nodist_idl_DATA = ${XML} ${IDL_PACO} Calcium_Ports.idl
223 nodist_salomeinclude_HEADERS = ${INCLUDES_PACO} 
224
225 BUILT_SOURCES = $(IDL_SOURCES) $(PAR_INCLUDES) $(PAR)
226
227 SALOME_ComponentPaCO.idl SALOME_ComponentPaCO.hxx SALOME_ComponentPaCO.cxx : SALOME_Component.idl SALOME_Component.xml
228 SALOME_PortsPaCO.idl SALOME_PortsPaCO.hxx SALOME_PortsPaCO.cxx : SALOME_Ports.idl SALOME_Ports.xml
229 DSC_EnginesPaCO.idl DSC_EnginesPaCO.hxx DSC_EnginesPaCO.cxx : DSC_Engines.idl DSC_Engines.xml
230 SALOME_PACOExtensionPaCO.idl SALOME_PACOExtensionPaCO.hxx SALOME_PACOExtensionPaCO.cxx : SALOME_PACOExtension.idl SALOME_PACOExtension.xml
231 SALOME_ParamPortsPaCO.idl SALOME_ParamPortsPaCO.hxx SALOME_ParamPortsPaCO.cxx : SALOME_ParamPorts.idl SALOME_ParamPorts.xml
232
233 lib_LTLIBRARIES = libSalomeIDLKernel.la $(PAR_LIB)
234
235 nodist_libSalomeIDLKernel_la_SOURCES = $(IDL_SOURCES) $(DYNIDL_SRCS)
236 libSalomeIDLKernel_la_CPPFLAGS =-I$(top_builddir)/idl \
237                                 @CORBA_CXXFLAGS@ @CORBA_INCLUDES@
238 libSalomeIDLKernel_la_LDFLAGS = -no-undefined -version-info=0:0:0
239 libSalomeIDLKernel_la_LIBADD  = @CORBA_LIBS@
240
241 nodist_libSalomeParallelIDLKernel_la_SOURCES = $(PAR) $(GEN_PACO)
242 libSalomeParallelIDLKernel_la_CPPFLAGS =-I$(top_builddir)/idl \
243                                         @CORBA_CXXFLAGS@ @CORBA_INCLUDES@ \
244                                         @PACO_INCLUDES@
245 libSalomeParallelIDLKernel_la_LDFLAGS = -no-undefined -version-info=0:0:0
246 libSalomeParallelIDLKernel_la_LIBADD  = libSalomeIDLKernel.la @PACO_LIBS@
247
248 # These variables defines the building process of CORBA files
249 IDLCXXFLAGS = -bcxx @IDLCXXFLAGS@ -I$(srcdir) -I$(top_builddir)/salome/idl
250 IDLPYFLAGS  = @IDLPYFLAGS@ -I$(srcdir)
251
252 # potential problem on parallel make on the following - multiple outputs
253 SUFFIXES = .idl .hh SK.cc
254 .idlSK.cc:
255         $(IDL) $(IDLCXXFLAGS) $<
256 SK.cc.hh:
257
258 #Dummy rule to replace the following one (for parallel make)
259 #.idl.hh:
260 #       $(IDL) $(IDLCXXFLAGS) $<
261
262 if WITH_PACO_PARALLEL
263
264 %PaCO.idl %PaCO.hxx %PaCO.cxx : %.idl %.xml
265         $(IDL) -p@PACOPATH@/lib/python -bpaco -Wb$(top_srcdir)/idl/$*.xml,$(srcdir):@PACOPATH@/idl $(top_srcdir)/idl/$*.idl
266
267 .idl.hxx:
268         $(IDL) $(IDLCXXFLAGS) -Wbh=.hxx -Wbs=.cxx $<
269 endif
270
271 install-exec-local: $(IDL_FILES:%=$(top_srcdir)/idl/%) Calcium_Ports.idl
272         $(INSTALL) -d  $(DESTDIR)$(salomepythondir)
273         ls $^ | while read file; do \
274           $(IDL) $(IDLPYFLAGS) -C$(DESTDIR)$(salomepythondir) $$file ; \
275         done
276 if WITH_PACO_PARALLEL
277         ls $(top_builddir)/idl/*.idl | while read file; do \
278           $(IDL) $(IDLPYFLAGS) -I$(top_srcdir)/idl -I@PACOPATH@/idl -C$(DESTDIR)$(salomepythondir) $$file ; \
279         done
280 endif
281
282 # uninstall-local removes too much, but it works in distcheck
283 uninstall-local:
284         rm -rf $(DESTDIR)$(salomepythondir)/*
285
286 mostlyclean-local:
287         -rm -f *.hh *.cc .depidl Calcium_Ports.idl
288
289 # we use cpp to generate dependencies between idl files.
290 # option x c tells the preprocessor to consider idl as a c file.
291 # if an idl is modified, all idl dependencies are rebuilt
292
293 .depidl: $(IDL_FILES) Calcium_Ports.idl
294         @echo "" > $@
295         @for dep in $^ dummy; do \
296           if [ $$dep != "dummy" ]; then \
297             echo Building dependencies for $$dep; \
298             $(CPP) $(C_DEPEND_FLAG) -x c -I$(srcdir) $$dep 2>/dev/null | \
299             sed 's/\.o/\SK.cc/' >>$@; \
300           fi; \
301         done ;
302
303 -include .depidl
304
305 CLEANFILES = *PaCO* *.hxx *.cxx Calcium_Ports.idl
306
307