Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/smesh.git] / idl / Makefile.am
1 # Copyright (C) 2005  OPEN CASCADE, CEA, EDF R&D, LEG
2 #           PRINCIPIA R&D, EADS CCR, Lip6, BV, CEDRAT
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 #
21 # This Makefile is responsible of generating the client and server
22 # implementation of IDL interfaces for both C++ and python usage.
23 # The building process of the C++ files is in charge of each source
24 # package and then is not manage here.
25 #
26
27 include $(top_srcdir)/adm_local/unix/make_common_starter.am
28
29 BASEIDL_FILES = \
30         SMESH_Gen.idl \
31         SMESH_Mesh.idl \
32         SMESH_Hypothesis.idl \
33         SMESH_BasicHypothesis.idl \
34         SMESH_Filter.idl \
35         SMESH_Group.idl \
36         SMESH_Pattern.idl \
37         SMESH_MeshEditor.idl
38
39 EXTRA_DIST+= $(BASEIDL_FILES)
40
41 # This variable defines the files to be installed
42 salomeidl_DATA = $(BASEIDL_FILES)
43
44 # GUI idl common library
45 lib_LTLIBRARIES = libSalomeIDLSMESH.la
46
47 # Sources built from idl files
48 nodist_libSalomeIDLSMESH_la_SOURCES = \
49         SMESH_MeshSK.cc \
50         SMESH_HypothesisSK.cc \
51         SMESH_GenSK.cc \
52         SMESH_BasicHypothesisSK.cc \
53         SMESH_FilterSK.cc \
54         SMESH_GroupSK.cc \
55         SMESH_PatternSK.cc \
56         SMESH_MeshEditorSK.cc
57
58 # header files must be exported: other modules have to use this library
59 nodist_salomeinclude_HEADERS= $(BASEIDL_FILES:%.idl=%.hh)
60
61 libSalomeIDLSMESH_la_CPPFLAGS =\
62         -I$(top_builddir)/salome_adm/unix \
63         -I$(top_builddir)/idl \
64         $(CORBA_CXXFLAGS) \
65         $(CORBA_INCLUDES) \
66         $(KERNEL_CXXFLAGS) \
67         $(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
75 # These variables defines the building process of CORBA files
76 OMNIORB_IDL         = @OMNIORB_IDL@
77 OMNIORB_IDLCXXFLAGS = @OMNIORB_IDLCXXFLAGS@
78 OMNIORB_IDLPYFLAGS  = \
79         @OMNIORB_IDLPYFLAGS@ \
80         -I$(top_builddir)/idl/salome \
81         -I$(KERNEL_ROOT_DIR)/idl/salome \
82         -I$(MED_ROOT_DIR)/idl/salome \
83         -I$(GEOM_ROOT_DIR)/idl/salome
84
85 IDLCXXFLAGS = \
86         -bcxx \
87         @IDLCXXFLAGS@ \
88         -I$(top_builddir)/idl/salome \
89         -I$(KERNEL_ROOT_DIR)/idl/salome \
90         -I$(MED_ROOT_DIR)/idl/salome \
91         -I$(GEOM_ROOT_DIR)/idl/salome \
92         -I$(top_builddir)/salome_adm/unix
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  $(pkgpythondir)
109         ls $^ | while read file; do \
110           $(OMNIORB_IDL) $(IDLPYFLAGS) -C$(pkgpythondir) $$file ; \
111         done
112
113 # uninstall-local removes too much, but it works in distcheck
114 uninstall-local:
115         rm -rf $(pkgpythondir)/*
116
117 mostlyclean-local:
118         -rm -f *.hh *.cc .depidl
119
120 # we use cpp to generate dependencies between idl files.
121 # option x c tells the preprocessor to consider idl as a c file.
122 # if an idl is modified, all idl dependencies are rebuilt
123
124 .depidl: $(BASEIDL_FILES)
125         @echo "" > $@
126         @for dep in $^ dummy; do \
127           if [ $$dep != "dummy" ]; then \
128             echo Building dependencies for $$dep; \
129             $(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 | \
130             sed 's/\.o/\SK.cc/' >>$@; \
131           fi; \
132         done ;
133
134 -include .depidl