Salome HOME
merging the main trunk with the BrForComp branch to build a pre V3_0_1
[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         FIELDDOUBLEClient.hxx \
48         FIELDINTClient.hxx \
49         libMEDClient.i
50
51 ifeq (@SWIG_VERSION@, 1.3.21)
52 SWIG_DEF = libMEDClient.i dummy.i
53
54 dummy_wrap.cxx: libMEDClient_wrap.cxx
55         sed -e 's/SwigValueWrapper< vector<FAMILY \* > >/vector<FAMILY \* >/g' libMEDClient_wrap.cxx > toto
56         mv toto libMEDClient_wrap.cxx
57         sed -e 's/SwigValueWrapper< vector<SUPPORT \* > const >/vector<SUPPORT \* >/g' libMEDClient_wrap.cxx > toto
58         mv toto libMEDClient_wrap.cxx
59         touch dummy_wrap.cxx
60 else
61 SWIG_DEF = libMEDClient.i
62 endif
63
64 EXPORT_PYSCRIPTS = libMEDClient.py
65
66 # Libraries targets
67
68 LIB=libMEDClientcmodule.la
69 LIB_SRC = \
70         COORDINATEClient.cxx \
71         CONNECTIVITYClient.cxx \
72         MESHClient.cxx \
73         SUPPORTClient.cxx \
74         FAMILYClient.cxx \
75         GROUPClient.cxx \
76         FIELDDOUBLEClient.cxx \
77         FIELDINTClient.cxx
78
79 LIB_CLIENT_IDL= \
80         SALOME_Component.idl \
81         SALOMEDS.idl \
82         SALOMEDS_Attributes.idl \
83         SALOME_Exception.idl \
84         SALOME_Comm.idl \
85         MED.idl \
86         SALOME_GenericObj.idl
87
88 # Executables targets
89 BIN_SRC = 
90 BIN_SERVER_IDL = 
91 BIN_CLIENT_IDL = 
92
93 LDFLAGS= -L$(top_builddir)/lib/salome 
94 LDFLAGSFORBIN= -L$(top_builddir)/lib/salome
95
96 CPPFLAGS+= $(MED2_INCLUDES) $(HDF5_INCLUDES) $(PYTHON_INCLUDES) -I${KERNEL_ROOT_DIR}/include/salome
97 CXXFLAGS+=-I${KERNEL_ROOT_DIR}/include/salome
98 LDFLAGS+=-L${KERNEL_ROOT_DIR}/lib/salome -lOpUtil -lMedCorba_Swigcmodule -lmedmem 
99
100 MED.hh MEDSK.cc: MED.idl
101         omniidl -bcxx -Wbtp -I$(top_builddir)/idl -I${KERNEL_ROOT_DIR}/idl/salome $^
102
103 @CONCLUDE@