Salome HOME
PAL13460 (PAL EDF 301 force the mesh to go through a point)
[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_MeshEditor.idl \
53         SMESH_Gen.idl \
54         SMESH_Group.idl \
55         SMESH_Hypothesis.idl \
56         SMESH_Pattern.idl \
57         SMESH_Filter.idl \
58         GEOM_Gen.idl \
59         MED.idl
60
61 # Executables targets
62 BIN = SMESHClientBin
63 BIN_SRC = 
64 BIN_CLIENT_IDL = 
65 BIN_SERVER_IDL =
66
67 # additionnal information to compil and link file
68 CPPFLAGS += $(OCC_INCLUDES) $(KERNEL_CXXFLAGS) $(BOOST_CPPFLAGS)
69 CXXFLAGS += $(OCC_CXXFLAGS) $(KERNEL_CXXFLAGS)
70 LDFLAGS  += $(OCC_KERNEL_LIBS) \
71         $(KERNEL_LDFLAGS) \
72         $(GEOM_LDFLAGS) \
73         $(MED_LDFLAGS) \
74         -lSMDS \
75         -lSMESHimpl \
76         -lSMESHDS \
77         -lSMESHControls \
78         -lNMTTools \
79         -lNMTDS \
80         -lmed_V2_1 \
81         -lMEDWrapper \
82         -lMEDWrapperBase \
83         -lMEDWrapper_V2_1 \
84         -lMEDWrapper_V2_2 \
85         -lSalomeResourcesManager \
86         -lSalomeLifeCycleCORBA \
87         -lSalomeNotification \
88         -lSalomeContainer \
89         -lRegistry \
90         -lSalomeNS \
91         -lSALOMELocalTrace \
92         -lSALOMEBasics \
93         -lOpUtil \
94         -lTKShHealing \
95         -lMeshDriverDAT \
96         -lMeshDriverSTL \
97         -lMeshDriverMED \
98         -lMeshDriverUNV \
99         -lMeshDriver
100
101 LDFLAGSFORBIN += $(LDFLAGS)
102
103 @CONCLUDE@
104