Salome HOME
Committing of a more precise README file in the Med Memory V3_2_0.
[modules/med.git] / src / MedClient / src / 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.salome-platform.org/ or email : webmaster.salome@opencascade.com
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 MACHINE=PCLINUX
34
35 @COMMENCE@
36
37
38 EXPORT_HEADERS = \
39         COORDINATEClient.hxx \
40         CONNECTIVITYClient.hxx \
41         MESHClient.hxx \
42         SUPPORTClient.hxx \
43         FAMILYClient.hxx \
44         GROUPClient.hxx \
45         FIELDClient.hxx \
46         FIELDClient.cxx \
47         libMEDClient.i
48
49 ifeq (@SWIG_VERSION@, 1.3.21)
50 SWIG_DEF = libMEDClient.i dummy.i
51
52 dummy_wrap.cxx: libMEDClient_wrap.cxx
53         sed -e 's/SwigValueWrapper< vector<FAMILY \* > >/vector<FAMILY \* >/g' libMEDClient_wrap.cxx > toto
54         mv toto libMEDClient_wrap.cxx
55         sed -e 's/SwigValueWrapper< vector<SUPPORT \* > const >/vector<SUPPORT \* >/g' libMEDClient_wrap.cxx > toto
56         mv toto libMEDClient_wrap.cxx
57         touch dummy_wrap.cxx
58 else
59 SWIG_DEF = libMEDClient.i
60 endif
61
62 # libMEDClient.i depends on libMEDMEM_Swig.i and libMedCorba_Swig.i:
63 # %include "libMedCorba_Swig.i"
64 # %include "libMEDMEM_Swig.i"
65 SWIG_DEP = libMEDMEM_Swig.i libMedCorba_Swig.i
66
67 EXPORT_PYSCRIPTS = libMEDClient.py \
68                    medClient_test.py \
69                    testMeshAlliances.py
70
71 # Libraries targets
72
73 LIB=libMEDClientcmodule.la
74 LIB_SRC = \
75         COORDINATEClient.cxx \
76         CONNECTIVITYClient.cxx \
77         MESHClient.cxx \
78         SUPPORTClient.cxx \
79         FAMILYClient.cxx \
80         GROUPClient.cxx
81
82 LIB_CLIENT_IDL= \
83         SALOME_Component.idl \
84         SALOMEDS.idl \
85         SALOMEDS_Attributes.idl \
86         SALOME_Exception.idl \
87         SALOME_Comm.idl \
88         MED.idl \
89         SALOME_GenericObj.idl
90
91 # Executables targets
92 BIN_SRC = 
93 BIN_SERVER_IDL = 
94 BIN_CLIENT_IDL = 
95
96 LDFLAGS= -L$(top_builddir)/lib@LIB_LOCATION_SUFFIX@/salome 
97 LDFLAGSFORBIN= -L$(top_builddir)/lib@LIB_LOCATION_SUFFIX@/salome
98
99 CPPFLAGS+= $(MED2_INCLUDES) $(HDF5_INCLUDES) $(PYTHON_INCLUDES) ${KERNEL_CXXFLAGS} -I$(srcdir)/../../MEDMEM_I
100 CXXFLAGS+=${KERNEL_CXXFLAGS}
101 LDFLAGS+=${KERNEL_LDFLAGS} -lOpUtil -lMedCorba_Swigcmodule -lmedmem
102
103 MED.hh MEDSK.cc: MED.idl
104         omniidl -bcxx -Wbtp -I$(top_builddir)/idl -I${KERNEL_ROOT_DIR}/idl/salome $^
105
106 @CONCLUDE@