Salome HOME
merging the main trunk with the BrForComp branch to build a pre V3_0_1
[modules/med.git] / src / MEDMEM_SWIG / Makefile.in
1 #  MED MEDMEM_SWIG : binding of C++ implementation and 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)
32
33 @COMMENCE@
34
35 EXPORT_HEADERS = \
36         libMEDMEM_Swig.i \
37         my_typemap.i \
38         MEDMEM_SWIG_FieldDouble.hxx \
39         MEDMEM_SWIG_FieldInt.hxx \
40         MEDMEM_SWIG_MedFieldDoubleDriver.hxx \
41         MEDMEM_SWIG_MedFieldIntDriver.hxx \
42         MEDMEM_SWIG_AsciiFieldDoubleDriver.hxx \
43         MEDMEM_SWIG_AsciiFieldIntDriver.hxx \
44         MEDMEM_SWIG_Templates.hxx
45
46 # Libraries targets
47
48 LIB = libMEDMEM_Swigcmodule.la
49
50 LIB_SRC = MEDMEM_SWIG_FieldDouble.cxx \
51           MEDMEM_SWIG_FieldInt.cxx \
52           MEDMEM_SWIG_MedFieldDoubleDriver.cxx \
53           MEDMEM_SWIG_MedFieldIntDriver.cxx \
54           MEDMEM_SWIG_AsciiFieldDoubleDriver.cxx \
55           MEDMEM_SWIG_AsciiFieldIntDriver.cxx
56
57 ifeq (@SWIG_VERSION@, 1.3.21)
58 SWIG_DEF = libMEDMEM_Swig.i dummy.i
59
60 dummy_wrap.cxx: libMEDMEM_Swig_wrap.cxx
61         sed -e 's/SwigValueWrapper< vector<FAMILY \* > >/vector<FAMILY \* >/g' libMEDMEM_Swig_wrap.cxx > toto
62         mv toto libMEDMEM_Swig_wrap.cxx
63         sed -e 's/SwigValueWrapper< vector<SUPPORT \* > const >/vector<SUPPORT \* >/g' libMEDMEM_Swig_wrap.cxx > toto
64         mv toto libMEDMEM_Swig_wrap.cxx
65         touch dummy_wrap.cxx
66 else
67 SWIG_DEF = libMEDMEM_Swig.i
68 endif
69
70 EXPORT_PYSCRIPTS = libMEDMEM_Swig.py \
71                    med_test1.py \
72                    med_test2.py \
73                    med_test3.py \
74                    med_test_grid.py \
75                    med_test_skin.py \
76                    medMeshing_test.py \
77                    med_field_anal.py \
78                    med_opfield_test.py \
79                    med_opsupp_test.py \
80                    test_gibi.py \
81                    test_porflow.py \
82                    testMedMemGeneral.py
83
84 #############################################################################
85
86 LDFLAGS= -L$(top_builddir)/lib/salome 
87 LDFLAGSFORBIN= -L$(top_builddir)/lib/salome
88
89 CPPFLAGS+= $(PYTHON_INCLUDES) $(MED2_INCLUDES) $(HDF5_INCLUDES) -I${KERNEL_ROOT_DIR}/include/salome
90 CXXFLAGS+= @CXXTMPDPTHFLAGS@ -I${KERNEL_ROOT_DIR}/include/salome
91 LIBS= $(PYTHON_LIBS)
92 #LDFLAGS+= -lmedmem $(MED2_LIBS) $(HDF5_LIBS) -lSalomeLoggerServer -L${KERNEL_ROOT_DIR}/lib/salome
93 # change motivated by the bug KERNEL4778.
94 LDFLAGS+= -lmedmem $(MED2_LIBS) $(HDF5_LIBS) -L${KERNEL_ROOT_DIR}/lib/salome -lSALOMELocalTrace
95
96 #############################################################################
97
98 @CONCLUDE@