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