Salome HOME
Building a version which will be tagged PreV2_0_0 working with KERNEL V1_4_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.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:${KERNEL_ROOT_DIR}/idl/salome
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         libMEDClient.i
47
48 SWIG_DEF = libMEDClient.i
49
50 EXPORT_PYSCRIPTS = libMEDClient.py
51
52 # Libraries targets
53
54 LIB=libMEDClientcmodule.la
55 LIB_SRC = \
56         COORDINATEClient.cxx \
57         CONNECTIVITYClient.cxx \
58         MESHClient.cxx \
59         SUPPORTClient.cxx \
60         FAMILYClient.cxx \
61         FIELDClient.cxx \
62         GROUPClient.cxx
63
64 LIB_CLIENT_IDL= \
65         SALOME_Component.idl \
66         SALOMEDS.idl \
67         SALOMEDS_Attributes.idl \
68         SALOME_Exception.idl \
69         MED.idl
70
71 # Executables targets
72 BIN_SRC = 
73 BIN_SERVER_IDL = 
74 BIN_CLIENT_IDL = 
75
76
77 CPPFLAGS+= $(MED2_INCLUDES) $(HDF5_INCLUDES) $(PYTHON_INCLUDES) -I${KERNEL_ROOT_DIR}/include/salome
78 CXXFLAGS+=-I${KERNEL_ROOT_DIR}/include/salome
79 LDFLAGS+=-L${KERNEL_ROOT_DIR}/lib/salome -lOpUtil -lMedCorba_Swigcmodule -lmedmem 
80
81 MED.hh MEDSK.cc: MED.idl
82         omniidl -bcxx -Wbtp -I$(top_builddir)/idl -I${KERNEL_ROOT_DIR}/idl/salome $^
83
84 @CONCLUDE@