Salome HOME
Join modifications from branch OCC_development_for_3_2_0a2
[modules/smesh.git] / src / StdMeshers / Makefile.in
1 #  SMESH StdMeshers : implementaion of SMESH idl descriptions
2 #
3 #  Copyright (C) 2003  CEA
4
5 #  This library is free software; you can redistribute it and/or 
6 #  modify it under the terms of the GNU Lesser General Public 
7 #  License as published by the Free Software Foundation; either 
8 #  version 2.1 of the License. 
9
10 #  This library is distributed in the hope that it will be useful, 
11 #  but WITHOUT ANY WARRANTY; without even the implied warranty of 
12 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
13 #  Lesser General Public License for more details. 
14
15 #  You should have received a copy of the GNU Lesser General Public 
16 #  License along with this library; if not, write to the Free Software 
17 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
18
19 #  See http://www.salome-platform.org or email : webmaster.salome@opencascade.org
20 #
21 #
22 #
23 #  File   : Makefile.in
24 #  Author : Julia DOROVSKIKH
25 #  Module : SMESH
26
27 top_srcdir=@top_srcdir@
28 top_builddir=../..
29 srcdir=@srcdir@
30 VPATH=.:@srcdir@:@top_srcdir@/idl:$(top_builddir)/idl
31
32
33 @COMMENCE@
34
35 # header files  
36 EXPORT_HEADERS = \
37         StdMeshers_LocalLength.hxx \
38         StdMeshers_StartEndLength.hxx \
39         StdMeshers_Arithmetic1D.hxx \
40         StdMeshers_NumberOfSegments.hxx \
41         StdMeshers_Deflection1D.hxx \
42         StdMeshers_Propagation.hxx \
43         StdMeshers_LengthFromEdges.hxx \
44         StdMeshers_MaxElementArea.hxx \
45         StdMeshers_MaxElementVolume.hxx \
46         StdMeshers_NotConformAllowed.hxx \
47         StdMeshers_Regular_1D.hxx \
48         StdMeshers_Quadrangle_2D.hxx \
49         StdMeshers_MEFISTO_2D.hxx \
50         StdMeshers_Hexa_3D.hxx \
51         StdMeshers_AutomaticLength.hxx \
52         StdMeshers_Distribution.hxx \
53         StdMeshers_QuadranglePreference.hxx \
54         StdMeshers_Helper.hxx \
55         StdMeshers_QuadraticMesh.hxx
56
57 EXPORT_PYSCRIPTS =
58
59 # Libraries targets
60
61 LIB = libStdMeshers.la
62
63 LIB_SRC = \
64         StdMeshers_LocalLength.cxx \
65         StdMeshers_StartEndLength.cxx \
66         StdMeshers_Arithmetic1D.cxx \
67         StdMeshers_NumberOfSegments.cxx \
68         StdMeshers_Deflection1D.cxx \
69         StdMeshers_Propagation.cxx \
70         StdMeshers_LengthFromEdges.cxx \
71         StdMeshers_MaxElementArea.cxx \
72         StdMeshers_MaxElementVolume.cxx \
73         StdMeshers_NotConformAllowed.cxx \
74         StdMeshers_Regular_1D.cxx \
75         StdMeshers_Quadrangle_2D.cxx \
76         StdMeshers_MEFISTO_2D.cxx \
77         StdMeshers_Penta_3D.cxx \
78         StdMeshers_Hexa_3D.cxx \
79         StdMeshers_AutomaticLength.cxx \
80         StdMeshers_Distribution.cxx \
81         StdMeshers_QuadranglePreference.cxx \
82         StdMeshers_Helper.cxx \
83         StdMeshers_QuadraticMesh.cxx
84
85 LIB_SERVER_IDL = 
86
87 LIB_CLIENT_IDL =
88
89 # Executables targets
90 BIN = 
91 BIN_SRC = 
92
93 # additionnal information to compil and link file
94 CPPFLAGS+= \
95         $(OCC_INCLUDES) \
96         $(BOOST_CPPFLAGS) \
97         -I${KERNEL_ROOT_DIR}/include/salome
98
99 CXXFLAGS+= \
100         $(OCC_CXXFLAGS) \
101         -I${KERNEL_ROOT_DIR}/include/salome \
102         -I${GEOM_ROOT_DIR}/include/salome
103
104 LDFLAGS+= \
105         -lSMESHimpl \
106         -lMEFISTO2D \
107         $(OCC_LDPATH) \
108         -lTKAdvTools \
109         -L${KERNEL_ROOT_DIR}/lib/salome \
110         -L${GEOM_ROOT_DIR}/lib/salome
111
112 @CONCLUDE@