Salome HOME
Merge from V6_5_BR 05/06/2012
[modules/smesh.git] / idl / Makefile.am
1 # Copyright (C) 2007-2012  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         SMESH_Gen.idl \
29         SMESH_Mesh.idl \
30         SMESH_Hypothesis.idl \
31         SMESH_BasicHypothesis.idl \
32         SMESH_Filter.idl \
33         SMESH_Group.idl \
34         SMESH_Pattern.idl \
35         SMESH_MeshEditor.idl \
36         SMESH_Measurements.idl
37
38 BASEIDL_FILES_PY=$(BASEIDL_FILES:%.idl=%_idl.py)
39
40 # This variable defines the files to be installed
41 dist_salomeidl_DATA = $(BASEIDL_FILES)
42
43 # GUI idl common library
44 lib_LTLIBRARIES = libSalomeIDLSMESH.la
45
46 # Sources built from idl files
47 nodist_libSalomeIDLSMESH_la_SOURCES = \
48         SMESH_MeshSK.cc \
49         SMESH_HypothesisSK.cc \
50         SMESH_GenSK.cc \
51         SMESH_BasicHypothesisSK.cc \
52         SMESH_FilterSK.cc \
53         SMESH_GroupSK.cc \
54         SMESH_PatternSK.cc \
55         SMESH_MeshEditorSK.cc \
56         SMESH_MeasurementsSK.cc
57
58 # to be done at first, to avoid parallel compilation problems
59 BUILT_SOURCES = $(nodist_libSalomeIDLSMESH_la_SOURCES)
60
61 # header files must be exported: other modules have to use this library
62 nodist_salomeinclude_HEADERS = $(BASEIDL_FILES:%.idl=%.hh)
63
64 libSalomeIDLSMESH_la_CPPFLAGS =                 \
65         -I$(top_builddir)/idl                   \
66         $(CORBA_CXXFLAGS) $(CORBA_INCLUDES)     \
67         $(KERNEL_CXXFLAGS) $(MED_CXXFLAGS)      \
68         $(GEOM_CXXFLAGS)
69 libSalomeIDLSMESH_la_LDFLAGS = -no-undefined -version-info=0:0:0
70 libSalomeIDLSMESH_la_LIBADD  =          \
71         @CORBA_LIBS@                    \
72         $(MED_LDFLAGS) -lSalomeIDLMED   \
73         $(GEOM_LDFLAGS) -lSalomeIDLGEOM \
74         $(KERNEL_LDFLAGS) -lSalomeIDLKernel
75
76 # These variables defines the building process of CORBA files
77 OMNIORB_IDL         = @OMNIORB_IDL@
78 OMNIORB_IDLCXXFLAGS = @OMNIORB_IDLCXXFLAGS@
79 OMNIORB_IDLPYFLAGS  = \
80         @OMNIORB_IDLPYFLAGS@ \
81         -I$(top_builddir)/idl/salome \
82         -I$(KERNEL_ROOT_DIR)/idl/salome \
83         -I$(MED_ROOT_DIR)/idl/salome \
84         -I$(GEOM_ROOT_DIR)/idl/salome
85
86 IDLCXXFLAGS = \
87         -bcxx \
88         @IDLCXXFLAGS@ \
89         -I$(top_builddir)/idl/salome \
90         -I$(KERNEL_ROOT_DIR)/idl/salome \
91         -I$(MED_ROOT_DIR)/idl/salome \
92         -I$(GEOM_ROOT_DIR)/idl/salome
93
94 IDLPYFLAGS  = \
95         @IDLPYFLAGS@ \
96         -I$(KERNEL_ROOT_DIR)/idl/salome \
97         -I$(MED_ROOT_DIR)/idl/salome \
98         -I$(GEOM_ROOT_DIR)/idl/salome
99
100 # potential problem on parallel make on the following - multiple outputs
101 SUFFIXES = .idl .hh SK.cc
102 .idlSK.cc:
103         $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
104 .idl.hh:
105         $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
106
107 install-exec-local: $(BASEIDL_FILES:%=$(top_srcdir)/idl/%)
108         $(INSTALL) -d  $(DESTDIR)$(salomepythondir)
109         ls $^ | while read file; do \
110           $(OMNIORB_IDL) $(IDLPYFLAGS) -C$(DESTDIR)$(salomepythondir) $$file ; \
111         done
112
113 # we want to remove only staff generated for IDL files and nothing more
114 uninstall-local:
115         @for modulen in SMESH StdMeshers ; do \
116           test -d $(DESTDIR)$(salomepythondir)/$${modulen} && echo "Removing $(DESTDIR)$(salomepythondir)/$${modulen}" && rm -rf $(DESTDIR)$(salomepythondir)/$${modulen} ; \
117           test -d $(DESTDIR)$(salomepythondir)/$${modulen}__POA && echo "Removing $(DESTDIR)$(salomepythondir)/$${modulen}__POA" && rm -rf $(DESTDIR)$(salomepythondir)/$${modulen}__POA ; \
118         done ; \
119         for filen in $(BASEIDL_FILES_PY) ; do \
120           echo "Removing $(DESTDIR)$(salomepythondir)/$${filen}" && rm -f $(DESTDIR)$(salomepythondir)/$${filen}* ; \
121         done
122
123 mostlyclean-local:
124         -rm -f *.hh *.cc .depidl
125
126 # we use cpp to generate dependencies between idl files.
127 # option x c tells the preprocessor to consider idl as a c file.
128 # if an idl is modified, all idl dependencies are rebuilt
129
130 .depidl: $(BASEIDL_FILES)
131         @echo "" > $@
132         @for dep in $^ dummy; do \
133           if [ $$dep != "dummy" ]; then \
134             echo Building dependencies for $$dep; \
135             $(CPP) $(C_DEPEND_FLAG) -x c -I$(srcdir) -I$(KERNEL_ROOT_DIR)/idl/salome -I$(MED_ROOT_DIR)/idl/salome -I$(GEOM_ROOT_DIR)/idl/salome $$dep 2>/dev/null | \
136             sed 's/\.o/\SK.cc/' >>$@; \
137           fi; \
138         done ;
139
140 -include .depidl