Salome HOME
Join modifications from branch CEAFor_V3_2_0
[modules/med.git] / src / MedClient / test / test2 / Makefile.in
1 #  MED MedClient : tool to transfer MED CORBA from server producer of MED object to a client using those MED object
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 # source path
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 EXPORT_PYSCRIPTS = \
36         ${patsubst ${srcdir}/%, %, ${wildcard ${srcdir}/TestMedCorba*.py} }  \
37         libCompo2.py
38
39 # Libraries targets
40
41 LIB = libCompo2cmodule.la
42 LIB_SRC = Compo2.cxx
43 LIB_CLIENT_IDL= SALOME_Component.idl SALOMEDS.idl SALOMEDS_Attributes.idl SALOME_Exception.idl SALOME_Comm.idl MED.idl SALOME_GenericObj.idl
44
45 LDFLAGS= -L$(top_builddir)/lib@LIB_LOCATION_SUFFIX@/salome 
46 LDFLAGSFORBIN= -L$(top_builddir)/lib@LIB_LOCATION_SUFFIX@/salome
47
48 CPPFLAGS += ${MED2_INCLUDES} ${HDF5_INCLUDES} ${PYTHON_INCLUDES} ${KERNEL_CXXFLAGS}
49 LIBS = ${KERNEL_LDFLAGS} -lMEDClientcmodule -lMEDMEM_Swigcmodule -lmedmem -lMEDMEMImpl  ${MED2_LIBS} ${HDF5_LIBS}
50
51 # Executables targets
52
53 ifeq (@SWIG_VERSION@, 1.3.21)
54 SWIG_DEF = libCompo2.i dummy.i
55
56 dummy_wrap.cxx: libCompo2_wrap.cxx
57         sed -e 's/SwigValueWrapper< vector<FAMILY \* > >/vector<FAMILY \* >/g' libCompo2_wrap.cxx > toto
58         mv toto libCompo2_wrap.cxx
59         sed -e 's/SwigValueWrapper< vector<SUPPORT \* > const >/vector<SUPPORT \* >/g' libCompo2_wrap.cxx > toto
60         mv toto libCompo2_wrap.cxx
61         touch dummy_wrap.cxx
62 else
63 SWIG_DEF = libCompo2.i
64 endif
65
66 # libCompo2.i depends on libMEDClient.i:
67 # %include "libMEDClient.i" 
68 # which in its turn depends on libMEDMEM_Swig.i and libMedCorba_Swig.i
69 SWIG_DEP = libMEDClient.i libMEDMEM_Swig.i libMedCorba_Swig.i
70
71 MED.hh MEDSK.cc: MED.idl
72         omniidl -bcxx -Wbtp -I$(top_builddir)/idl -I${KERNEL_ROOT_DIR}/idl/salome $^
73
74 @CONCLUDE@
75