Salome HOME
082cd052c7a703fe34f4385386a0d3edfd9906e1
[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.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 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
70 # Libraries targets
71
72 LIB=libMEDClientcmodule.la
73 LIB_SRC = \
74         COORDINATEClient.cxx \
75         CONNECTIVITYClient.cxx \
76         MESHClient.cxx \
77         SUPPORTClient.cxx \
78         FAMILYClient.cxx \
79         GROUPClient.cxx
80
81 LIB_CLIENT_IDL= \
82         SALOME_Component.idl \
83         SALOMEDS.idl \
84         SALOMEDS_Attributes.idl \
85         SALOME_Exception.idl \
86         SALOME_Comm.idl \
87         MED.idl \
88         SALOME_GenericObj.idl
89
90 # Executables targets
91 BIN_SRC = 
92 BIN_SERVER_IDL = 
93 BIN_CLIENT_IDL = 
94
95 LDFLAGS= -L$(top_builddir)/lib/salome 
96 LDFLAGSFORBIN= -L$(top_builddir)/lib/salome
97
98 CPPFLAGS+= $(MED2_INCLUDES) $(HDF5_INCLUDES) $(PYTHON_INCLUDES) -I${KERNEL_ROOT_DIR}/include/salome -I$(srcdir)/../../MEDMEM_I
99 CXXFLAGS+=-I${KERNEL_ROOT_DIR}/include/salome
100 LDFLAGS+=-L${KERNEL_ROOT_DIR}/lib/salome -lOpUtil -lMedCorba_Swigcmodule -lmedmem 
101
102 MED.hh MEDSK.cc: MED.idl
103         omniidl -bcxx -Wbtp -I$(top_builddir)/idl -I${KERNEL_ROOT_DIR}/idl/salome $^
104
105 @CONCLUDE@