Salome HOME
sources v1.2
[modules/smesh.git] / src / SMESH_I / Makefile.in
1 #  SMESH SMESH_I : idl implementation based on 'SMESH' unit's calsses
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 : Paul RASCLE, EDF
26 #  Module : SMESH
27 #  $Header$
28
29 top_srcdir=@top_srcdir@
30 top_builddir=../../..
31 srcdir=@srcdir@
32 VPATH=.:@srcdir@:@top_srcdir@/idl
33
34
35 @COMMENCE@
36
37 EXPORT_PYSCRIPTS = smeshpy.py SMESH_test.py
38
39 # Libraries targets
40
41 LIB= libSMESHEngine.la
42
43 LIB_SRC = SMESH_Gen_i.cxx SMESH_Mesh_i.cxx SMESH_MEDMesh_i.cxx \
44           SMESH_MEDFamily_i.cxx SMESH_MEDSupport_i.cxx \
45           SMESH_subMesh_i.cxx \
46           SMESH_MeshEditor_i.cxx \
47           SMESH_Hypothesis_i.cxx \
48           SMESH_topo.cxx SMESH_HypothesisFactory_i.cxx \
49           SMESH_Algo_i.cxx \
50           SMESH_1D_Algo_i.cxx \
51           SMESH_2D_Algo_i.cxx \
52           SMESH_3D_Algo_i.cxx \
53           SMESH_NumberOfSegments_i.cxx \
54           SMESH_LocalLength_i.cxx \
55           SMESH_MaxElementArea_i.cxx \
56           SMESH_MaxElementVolume_i.cxx \
57           SMESH_Regular_1D_i.cxx \
58           SMESH_Quadrangle_2D_i.cxx \
59           SMESH_MEFISTO_2D_i.cxx \
60           SMESH_Hexa_3D_i.cxx
61
62 LIB_SERVER_IDL = SMESH_Gen.idl SMESH_Hypothesis.idl SMESH_Mesh.idl \
63                  SALOME_Component.idl SALOME_Exception.idl \
64                  SMESH_BasicHypothesis.idl
65
66 LIB_CLIENT_IDL = SALOMEDS.idl GEOM_Gen.idl GEOM_Shape.idl MED.idl SALOMEDS_Attributes.idl
67
68 # Executables targets
69 BIN = 
70 BIN_SRC = 
71
72 # additionnal information to compil and link file
73 CPPFLAGS+= $(OCC_INCLUDES) $(MED2_INCLUDES) $(HDF5_INCLUDES)
74 CXXFLAGS+= $(OCC_CXXFLAGS) $(MED2_INCLUDES) $(HDF5_INCLUDES)
75
76 #IDLCXXFLAGS+= -Wbtp
77
78 LDFLAGS+=  $(CAS_KERNEL) $(CAS_OCAF) $(CAS_VIEWER) $(CAS_MODELER) $(HDF5_LIBS) $(MED2_LIBS) -lSMESHimpl -lSalomeContainer -lSalomeNS -lTOOLSDS -lRegistry -lSalomeHDFPersist -lOpUtil -lGeometryClient -lSMESHDS -lSMDS -lMEFISTO2D -lMeshDriverMED -lSalomeLifeCycleCORBA
79
80 @CONCLUDE@
81