Salome HOME
2d94ab908c5373e9df2c3f7302716fdfae06e4d9
[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
29 top_srcdir=@top_srcdir@
30 top_builddir=../..
31 srcdir=@srcdir@
32 VPATH=.:@srcdir@:@top_srcdir@/idl:$(top_builddir)/idl:${KERNEL_ROOT_DIR}/idl/salome:${MED_ROOT_DIR}/idl/salome
33
34
35 @COMMENCE@
36
37 # header files  
38 EXPORT_HEADERS= \
39         SMESH_Gen.hxx \
40         SMESH_Mesh.hxx \
41         SMESH_subMesh.hxx \
42         SMESH_Hypothesis.hxx \
43         SMESH_HypothesisFactory.hxx \
44         SMESH_Algo.hxx \
45         SMESH_1D_Algo.hxx \
46         SMESH_2D_Algo.hxx \
47         SMESH_3D_Algo.hxx \
48         SMESH_NumberOfSegments.hxx \
49         SMESH_LocalLength.hxx \
50         SMESH_LengthFromEdges.hxx \
51         SMESH_MaxElementArea.hxx \
52         SMESH_MaxElementVolume.hxx \
53         SMESH_Regular_1D.hxx \
54         SMESH_Quadrangle_2D.hxx \
55         SMESH_MEFISTO_2D.hxx \
56         SMESH_Hexa_3D.hxx \
57         SMESH_HypothesisCreator.hxx
58
59 EXPORT_PYSCRIPTS =
60
61 # Libraries targets
62
63 LIB= libSMESHimpl.la
64
65 LIB_SRC = SMESH_Gen.cxx SMESH_Mesh.cxx SMESH_subMesh.cxx \
66           SMESH_Hypothesis.cxx \
67           SMESH_HypothesisFactory.cxx \
68           SMESH_Algo.cxx \
69           SMESH_1D_Algo.cxx \
70           SMESH_2D_Algo.cxx \
71           SMESH_3D_Algo.cxx \
72           SMESH_NumberOfSegments.cxx \
73           SMESH_LocalLength.cxx \
74           SMESH_LengthFromEdges.cxx \
75           SMESH_MaxElementArea.cxx \
76           SMESH_MaxElementVolume.cxx \
77           SMESH_Regular_1D.cxx \
78           SMESH_Quadrangle_2D.cxx \
79           SMESH_MEFISTO_2D.cxx \
80           SMESH_Hexa_3D.cxx
81
82 LIB_SERVER_IDL = 
83
84 LIB_CLIENT_IDL =
85
86 # Executables targets
87 BIN = 
88 BIN_SRC = 
89
90 # additionnal information to compil and link file
91 CPPFLAGS+= $(OCC_INCLUDES) $(MED2_INCLUDES) $(HDF5_INCLUDES) -I${KERNEL_ROOT_DIR}/include/salome
92 CXXFLAGS+= $(OCC_CXXFLAGS) $(MED2_INCLUDES) $(HDF5_INCLUDES) -I${KERNEL_ROOT_DIR}/include/salome
93
94 #IDLCXXFLAGS+= -Wbtp
95
96 LDFLAGS+= $(HDF5_LIBS) $(MED2_LIBS) -lOpUtil -lSMESHDS -lSMDS -lMEFISTO2D -lMeshDriverDAT -lMeshDriverMED -lMeshDriverUNV -L${KERNEL_ROOT_DIR}/lib/salome
97
98 @CONCLUDE@
99