]> SALOME platform Git repositories - samples/component.git/blob - idl/Makefile.am
Salome HOME
b874919b976014ef1f83096cbbb5e8ef616d0f8a
[samples/component.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 = \
30         AddComponent.idl \
31         AdditionComponent.idl \
32         DivComponent.idl \
33         FactorialComponent.idl \
34         MulComponent.idl \
35         SubComponent.idl \
36         SyrComponent.idl \
37         SyrControlComponent.idl \
38         TypesCheck.idl \
39         DataStreamComponent.idl \
40         SIGNALSComponent.idl \
41         UndefinedSymbolComponent.idl \
42         Calculator.idl
43
44 # This variable defines the files to be installed
45 dist_salomeidl_DATA = $(BASEIDL_FILES)
46
47 # GUI idl common library
48 lib_LTLIBRARIES = libSalomeIDLCOMPONENT.la
49
50 # Sources built from idl files
51 BASEIDL_SOURCES =\
52         AddComponentSK.cc \
53         AdditionComponentSK.cc \
54         DivComponentSK.cc \
55         FactorialComponentSK.cc \
56         MulComponentSK.cc \
57         SubComponentSK.cc \
58         SyrComponentSK.cc \
59         SyrControlComponentSK.cc \
60         TypesCheckSK.cc \
61         DataStreamComponentSK.cc \
62         SIGNALSComponentSK.cc \
63         UndefinedSymbolComponentSK.cc \
64         CalculatorSK.cc
65 DYNIDL_SOURCES = \
66         AddComponentDynSK.cc \
67         AdditionComponentDynSK.cc \
68         DivComponentDynSK.cc \
69         FactorialComponentDynSK.cc \
70         MulComponentDynSK.cc \
71         SubComponentDynSK.cc \
72         SyrComponentDynSK.cc \
73         SyrControlComponentDynSK.cc \
74         TypesCheckDynSK.cc \
75         DataStreamComponentDynSK.cc \
76         SIGNALSComponentDynSK.cc \
77         UndefinedSymbolComponentDynSK.cc \
78         CalculatorDynSK.cc
79
80 nodist_libSalomeIDLCOMPONENT_la_SOURCES = ${BASEIDL_SOURCES} ${DYNIDL_SOURCES}
81 ${DYNIDL_SOURCES}: ${BASEIDL_SOURCES}
82
83 # header files must be exported: other modules have to use this library
84 nodist_salomeinclude_HEADERS = $(BASEIDL_FILES:%.idl=%.hh)
85
86 libSalomeIDLCOMPONENT_la_CPPFLAGS = \
87         $(KERNEL_CXXFLAGS) \
88         $(MED_CXXFLAGS) \
89         -I$(top_builddir)/salome_adm/unix \
90         -I$(top_builddir)/idl \
91         @CORBA_CXXFLAGS@ \
92         @CORBA_INCLUDES@
93
94 libSalomeIDLCOMPONENT_la_LDFLAGS = -no-undefined -version-info=0:0:0
95 libSalomeIDLCOMPONENT_la_LIBADD  = \
96         $(KERNEL_LDFLAGS) -lSalomeIDLKernel \
97         $(MED_LDFLAGS) -lSalomeIDLMED \
98         @CORBA_LIBS@
99
100 # These variables defines the building process of CORBA files
101 OMNIORB_IDL         = @OMNIORB_IDL@
102 OMNIORB_IDLCXXFLAGS = @OMNIORB_IDLCXXFLAGS@
103 OMNIORB_IDLPYFLAGS  = \
104         @OMNIORB_IDLPYFLAGS@ \
105         -I$(top_builddir)/idl/salome \
106         -I$(KERNEL_ROOT_DIR)/idl/salome \
107         -I$(MED_ROOT_DIR)/idl/salome
108
109 IDLCXXFLAGS = \
110         -bcxx \
111         @IDLCXXFLAGS@ \
112         -I$(top_builddir)/idl/salome \
113         -I$(KERNEL_ROOT_DIR)/idl/salome \
114         -I$(MED_ROOT_DIR)/idl/salome \
115         -I$(top_builddir)/salome_adm/unix
116 IDLPYFLAGS  = \
117         @IDLPYFLAGS@ \
118         -I$(KERNEL_ROOT_DIR)/idl/salome \
119         -I$(MED_ROOT_DIR)/idl/salome
120
121 # potential problem on parallel make on the following - multiple outputs
122 SUFFIXES = .idl .hh SK.cc
123 .idlSK.cc:
124         $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
125 .idl.hh:
126         $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
127
128 install-exec-local: $(BASEIDL_FILES:%=$(top_srcdir)/idl/%)
129         $(INSTALL) -d  $(DESTDIR)$(salomepythondir)
130         ls $^ | while read file; do \
131           $(OMNIORB_IDL) $(IDLPYFLAGS) -C$(DESTDIR)$(salomepythondir) $$file ; \
132         done
133
134 # uninstall-local removes too much, but it works in distcheck
135 uninstall-local:
136         rm -rf $(DESTDIR)$(salomepythondir)/*
137
138 mostlyclean-local:
139         -rm -f *.hh *.cc .depidl
140
141 # we use cpp to generate dependencies between idl files.
142 # option x c tells the preprocessor to consider idl as a c file.
143 # if an idl is modified, all idl dependencies are rebuilt
144
145 .depidl: $(BASEIDL_FILES)
146         @echo "" > $@
147         @for dep in $^ dummy; do \
148           if [ $$dep != "dummy" ]; then \
149             echo Building dependencies for $$dep; \
150             $(CPP) $(C_DEPEND_FLAG) -x c -I$(srcdir) -I$(KERNEL_ROOT_DIR)/idl/salome -I$(MED_ROOT_DIR)/idl/salome $$dep 2>/dev/null | \
151             sed 's/\.o/\SK.cc/' >>$@; \
152           fi; \
153         done ;
154
155 -include .depidl