Salome HOME
Final version of the V2_2_0 in the main trunk of the CVS tree.
[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
43 # Libraries targets
44
45 LIB = libMEDMEM_Swigcmodule.la
46
47 LIB_SRC = MEDMEM_SWIG_FieldDouble.cxx \
48           MEDMEM_SWIG_FieldInt.cxx \
49           MEDMEM_SWIG_MedFieldDoubleDriver.cxx \
50           MEDMEM_SWIG_MedFieldIntDriver.cxx
51
52 SWIG_DEF = libMEDMEM_Swig.i
53
54 EXPORT_PYSCRIPTS = libMEDMEM_Swig.py \
55                    med_test1.py \
56                    med_test2.py \
57                    med_test3.py \
58                    med_test_grid.py \
59                    med_test_skin.py \
60                    medMeshing_test.py \
61                    med_field_anal.py \
62                    med_opfield_test.py \
63                    med_opsupp_test.py \
64                    test_gibi.py \
65                    test_porflow.py \
66                    testMedMemGeneral.py
67
68 #############################################################################
69
70 LDFLAGS= -L$(top_builddir)/lib/salome 
71 LDFLAGSFORBIN= -L$(top_builddir)/lib/salome
72
73 CPPFLAGS+= $(PYTHON_INCLUDES) $(MED2_INCLUDES) $(HDF5_INCLUDES) -I${KERNEL_ROOT_DIR}/include/salome
74 CXXFLAGS+= @CXXTMPDPTHFLAGS@ -I${KERNEL_ROOT_DIR}/include/salome
75 LIBS= $(PYTHON_LIBS)
76 #LDFLAGS+= -lmedmem $(MED2_LIBS) $(HDF5_LIBS) -lSalomeLoggerServer -L${KERNEL_ROOT_DIR}/lib/salome
77 # change motivated by the bug KERNEL4778.
78 LDFLAGS+= -lmedmem $(MED2_LIBS) $(HDF5_LIBS) -L${KERNEL_ROOT_DIR}/lib/salome -lSALOMELocalTrace
79
80 #############################################################################
81
82 @CONCLUDE@