Salome HOME
Join modifications from branch OCC_development_for_3_2_0a2
[modules/smesh.git] / src / SMESH / Makefile.in
1 #  SMESH SMESH : implementaion of SMESH idl descriptions
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 top_srcdir=@top_srcdir@
29 top_builddir=../..
30 srcdir=@srcdir@
31 VPATH=.:@srcdir@:@top_srcdir@/idl:$(top_builddir)/idl
32
33
34 @COMMENCE@
35
36 # header files  
37 EXPORT_HEADERS= \
38         SMESH_Gen.hxx \
39         SMESH_Mesh.hxx \
40         SMESH_subMesh.hxx \
41         SMESH_Hypothesis.hxx \
42         SMESH_HypoFilter.hxx \
43         SMESH_Algo.hxx \
44         SMESH_1D_Algo.hxx \
45         SMESH_2D_Algo.hxx \
46         SMESH_3D_Algo.hxx \
47         SMESH_Group.hxx \
48         SMESH_MeshEditor.hxx \
49         SMESH_Block.hxx \
50         SMESH_Pattern.hxx \
51         SMESH_IndexedDataMapOfShapeIndexedMapOfShape.hxx \
52         SMESH_DataMapOfElemPtrSequenceOfElemPtr.hxx \
53         SMESH_SequenceOfElemPtr.hxx \
54         SMESH_SequenceOfNode.hxx
55
56 EXPORT_PYSCRIPTS =
57
58 # Libraries targets
59
60 LIB= libSMESHimpl.la
61
62 LIB_SRC = SMESH_Gen.cxx SMESH_Mesh.cxx SMESH_subMesh.cxx \
63           SMESH_Hypothesis.cxx \
64           SMESH_Algo.cxx \
65           SMESH_1D_Algo.cxx \
66           SMESH_2D_Algo.cxx \
67           SMESH_3D_Algo.cxx \
68           SMESH_Group.cxx \
69           SMESH_MeshEditor.cxx \
70           SMESH_Block.cxx \
71           SMESH_Pattern.cxx \
72           SMESH_HypoFilter.cxx
73
74 LIB_SERVER_IDL = 
75
76 LIB_CLIENT_IDL =
77
78 # Executables targets
79 BIN = 
80 BIN_SRC = 
81
82 # additionnal information to compile and link file
83 CPPFLAGS+= $(OCC_INCLUDES) $(HDF5_INCLUDES) -I${KERNEL_ROOT_DIR}/include/salome \
84            -I${MED_ROOT_DIR}/include/salome -I${GEOM_ROOT_DIR}/include/salome $(BOOST_CPPFLAGS)
85 CXXFLAGS+= $(OCC_CXXFLAGS) $(HDF5_INCLUDES) -I${KERNEL_ROOT_DIR}/include/salome \
86            -I${MED_ROOT_DIR}/include/salome -I${GEOM_ROOT_DIR}/include/salome
87 LDFLAGS+= -L${KERNEL_ROOT_DIR}/lib/salome -L${GEOM_ROOT_DIR}/lib/salome -L${MED_ROOT_DIR}/lib/salome -lNMTTools -lSMESHDS -lMeshDriverDAT -lMeshDriverSTL -lMeshDriverMED -lMeshDriverUNV
88
89 @CONCLUDE@
90