Salome HOME
Join modifications from branch CEAFor_V3_2_0
[modules/med.git] / src / MedCorba_Swig / Makefile.in
1 #  MED MedCorba_Swig : binding of MED CORBA objects woth Python
2 #
3 #  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5
6 #  This library is free software; you can redistribute it and/or 
7 #  modify it under the terms of the GNU Lesser General Public 
8 #  License as published by the Free Software Foundation; either 
9 #  version 2.1 of the License. 
10
11 #  This library is distributed in the hope that it will be useful, 
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 #  Lesser General Public License for more details. 
15
16 #  You should have received a copy of the GNU Lesser General Public 
17 #  License along with this library; if not, write to the Free Software 
18 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19
20 #  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 #
22 #
23 #
24 #  File   : Makefile.in
25 #  Author : Nadir BOUHAMOU (CEA/DEN/DM2S/SFME/LGLS)
26 #  Module : MED
27
28 top_srcdir=@top_srcdir@
29 top_builddir=../..
30 srcdir=@srcdir@
31 VPATH=.:$(srcdir):$(top_srcdir)/idl:$(top_builddir)/idl
32
33 @COMMENCE@
34
35 # Libraries targets
36
37 LIB = libMedCorba_Swigcmodule.la
38
39 LIB_SRC = 
40
41 ifeq (@SWIG_VERSION@, 1.3.21)
42 SWIG_DEF = libMedCorba_Swig.i dummy.i
43
44 dummy_wrap.cxx: libMedCorba_Swig_wrap.cxx
45         sed -e 's/SwigValueWrapper< vector<FAMILY \* > >/vector<FAMILY \* >/g' libMedCorba_Swig_wrap.cxx > toto
46         mv toto libMedCorba_Swig_wrap.cxx
47         sed -e 's/SwigValueWrapper< vector<SUPPORT \* > const >/vector<SUPPORT \* >/g' libMedCorba_Swig_wrap.cxx > toto
48         mv toto libMedCorba_Swig_wrap.cxx
49         touch dummy_wrap.cxx
50 else
51 SWIG_DEF = libMedCorba_Swig.i
52 endif
53
54 # libMedCorba_Swig.i depends on libMEDMEM_Swig.i:
55 # %include "libMEDMEM_Swig.i"
56 SWIG_DEP = libMEDMEM_Swig.i
57
58 LIB_SERVER_IDL = MED.idl
59
60 LIB_CLIENT_IDL= SALOME_Component.idl SALOMEDS.idl SALOMEDS_Attributes.idl SALOME_Exception.idl SALOME_Comm.idl SALOME_GenericObj.idl
61
62 EXPORT_PYSCRIPTS = libMedCorba_Swig.py medcorba_test.py batchmode_medcorba_test.py batchmode_medcorba_test1.py
63
64 EXPORT_HEADERS = libMedCorba_Swig.i
65
66 #############################################################################
67
68 LDFLAGS= -L$(top_builddir)/lib@LIB_LOCATION_SUFFIX@/salome 
69 LDFLAGSFORBIN= -L$(top_builddir)/lib@LIB_LOCATION_SUFFIX@/salome
70
71 CPPFLAGS+= $(PYTHON_INCLUDES) $(MED2_INCLUDES) $(HDF5_INCLUDES) ${KERNEL_CXXFLAGS}
72 CXXFLAGS+=-ftemplate-depth-42 ${KERNEL_CXXFLAGS}
73 LIBS= $(PYTHON_LIBS) 
74 #LDFLAGS+=$(MED2_LIBS) $(HDF5_LIBS) -lMEDMEMImpl -lmedmem -lMEDMEM_Swigcmodule ${KERNEL_LDFLAGS} -lSalomeLoggerServer ${KERNEL_LDFLAGS}
75 # change motivated by the bug KERNEL4778.
76 LDFLAGS+=$(MED2_LIBS) $(HDF5_LIBS) -lMEDMEMImpl -lmedmem -lMEDMEM_Swigcmodule ${KERNEL_LDFLAGS} -lSALOMELocalTrace
77
78 #############################################################################
79
80 MED.hh MEDSK.cc: MED.idl
81         omniidl -bcxx -Wbtp -I$(top_builddir)/idl -I${KERNEL_ROOT_DIR}/idl/salome $^
82
83 @CONCLUDE@