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