Salome HOME
Using AutoTools for build procedure
[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
38 EXTRA_DIST+= $(BASEIDL_FILES)
39
40 # This variable defines the files to be installed
41 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
56 # header files must be exported: other modules have to use this library
57 nodist_salomeinclude_HEADERS= $(BASEIDL_FILES:%.idl=%.hh)
58
59 libSalomeIDLSMESH_la_CPPFLAGS =\
60         -I$(top_builddir)/salome_adm/unix \
61         -I$(top_builddir)/idl \
62         $(CORBA_CXXFLAGS) \
63         $(CORBA_INCLUDES) \
64         $(KERNEL_CXXFLAGS) \
65         $(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
73 # These variables defines the building process of CORBA files
74 OMNIORB_IDL         = @OMNIORB_IDL@
75 OMNIORB_IDLCXXFLAGS = @OMNIORB_IDLCXXFLAGS@
76 OMNIORB_IDLPYFLAGS  = \
77         @OMNIORB_IDLPYFLAGS@ \
78         -I$(top_builddir)/idl/salome \
79         -I$(KERNEL_ROOT_DIR)/idl/salome \
80         -I$(MED_ROOT_DIR)/idl/salome \
81         -I$(GEOM_ROOT_DIR)/idl/salome
82
83 IDLCXXFLAGS = \
84         -bcxx \
85         @IDLCXXFLAGS@ \
86         -I$(top_builddir)/idl/salome \
87         -I$(KERNEL_ROOT_DIR)/idl/salome \
88         -I$(MED_ROOT_DIR)/idl/salome \
89         -I$(GEOM_ROOT_DIR)/idl/salome \
90         -I$(top_builddir)/salome_adm/unix
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  $(pkgpythondir)
107         ls $^ | while read file; do \
108           $(OMNIORB_IDL) $(IDLPYFLAGS) -C$(pkgpythondir) $$file ; \
109         done
110
111 # uninstall-local removes too much, but it works in distcheck
112 uninstall-local:
113         rm -rf $(pkgpythondir)/*
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