Salome HOME
d367f0d273c9c5d1a458b50bfcf7ae77289e1ea0
[modules/smesh.git] / src / SMESHClient / Makefile.in
1 #  GEOM GEOMClient : tool to transfer BREP files from GEOM server to GEOM client
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 : Pavel TELKOV (OCC)
26 #  Module : SHESM
27
28 top_srcdir=@top_srcdir@
29 top_builddir=../..
30 srcdir=@srcdir@
31 VPATH=.:@srcdir@:@top_srcdir@/idl
32
33
34 @COMMENCE@
35
36 # header files 
37 EXPORT_HEADERS = \
38         SMESH_Client.hxx
39
40 # Libraries targets
41
42 LIB = libSMESHClient.la
43 LIB_SRC = SMESH_Client.cxx
44
45 LIB_CLIENT_IDL = SALOME_Comm.idl \
46         SALOME_Component.idl \
47         SALOMEDS.idl \
48         SALOMEDS_Attributes.idl \
49         SALOME_Exception.idl \
50         SALOME_GenericObj.idl \
51         SMESH_Mesh.idl \
52         SMESH_Gen.idl \
53         SMESH_Group.idl \
54         SMESH_Hypothesis.idl \
55         SMESH_Pattern.idl \
56         SMESH_Filter.idl \
57         GEOM_Gen.idl \
58         MED.idl
59
60 # Executables targets
61 BIN = SMESHClientBin
62 BIN_SRC = 
63 BIN_CLIENT_IDL = 
64 BIN_SERVER_IDL =
65
66 # additionnal information to compil and link file
67 CPPFLAGS += $(OCC_INCLUDES) $(KERNEL_CXXFLAGS) $(BOOST_CPPFLAGS)
68 CXXFLAGS += $(OCC_CXXFLAGS) $(KERNEL_CXXFLAGS)
69 LDFLAGS  += $(OCC_KERNEL_LIBS) \
70         $(KERNEL_LDFLAGS) \
71         $(GEOM_LDFLAGS) \
72         $(MED_LDFLAGS) \
73         -lSMDS \
74         -lSMESHimpl \
75         -lSMESHDS \
76         -lSMESHControls \
77         -lNMTTools \
78         -lNMTDS \
79         -lmed_V2_1 \
80         -lMEDWrapper \
81         -lMEDWrapperBase \
82         -lMEDWrapper_V2_1 \
83         -lMEDWrapper_V2_2 \
84         -lSalomeResourcesManager \
85         -lSalomeLifeCycleCORBA \
86         -lSalomeNotification \
87         -lSalomeContainer \
88         -lRegistry \
89         -lSalomeNS \
90         -lSALOMELocalTrace \
91         -lSALOMEBasics \
92         -lOpUtil \
93         -lTKShHealing \
94         -lMeshDriverDAT \
95         -lMeshDriverSTL \
96         -lMeshDriverMED \
97         -lMeshDriverUNV \
98         -lMeshDriver
99
100 LDFLAGSFORBIN += $(LDFLAGS)
101
102 @CONCLUDE@
103