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