Salome HOME
Merge with version on tag OCC-V2_1_0d
[modules/geom.git] / src / ShHealOper / Makefile.in
1 #  GEOM ShHealOper : Shape Healing
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.org
21 #
22 #
23 #
24 #  File   : Makefile.in
25 #  Author : Alexander SLADKOV
26 #  Module : GEOM
27 #  $Header: 
28
29 top_srcdir=@top_srcdir@
30 top_builddir=../..
31 srcdir=@srcdir@
32 VPATH=.:@srcdir@
33
34
35 @COMMENCE@
36
37 # Libraries targets
38 LIB = libShHealOper.la
39
40 LIB_SRC = \
41         ShHealOper_CloseContour.cxx \
42         ShHealOper_EdgeDivide.cxx \
43         ShHealOper_FillHoles.cxx \
44         ShHealOper_RemoveFace.cxx \
45         ShHealOper_RemoveInternalWires.cxx \
46         ShHealOper_Sewing.cxx \
47         ShHealOper_ShapeProcess.cxx \
48         ShHealOper_SplitCurve2d.cxx \
49         ShHealOper_SplitCurve3d.cxx \
50         ShHealOper_Tool.cxx \
51
52 LIB_CLIENT_IDL = 
53 LIB_SERVER_IDL = 
54
55 # header files 
56 EXPORT_HEADERS = \
57         ShHealOper_CloseContour.hxx \
58         ShHealOper_EdgeDivide.hxx \
59         ShHealOper_FillHoles.hxx \
60         ShHealOper_RemoveFace.hxx \
61         ShHealOper_RemoveInternalWires.hxx \
62         ShHealOper_Sewing.hxx \
63         ShHealOper_ShapeProcess.hxx \
64         ShHealOper_SpiltCurve2d.hxx \
65         ShHealOper_SplitCurve2d.hxx \
66         ShHealOper_SplitCurve3d.hxx \
67         ShHealOper_Tool.hxx
68
69 # idl files
70 EXPORT_IDLS=
71
72 CPPFLAGS += $(OCC_INCLUDES) -I${KERNEL_ROOT_DIR}/include/salome
73 CXXFLAGS += $(OCC_CXXFLAGS) -I${KERNEL_ROOT_DIR}/include/salome
74
75 LDFLAGS += $(CAS_LDPATH) -lTKernel -lTKGeomAlgo -lTKG3d -lTKG2d -lTKGeomBase -lTKShHealing -lTKMath -lTKBRep -lTKTopAlgo -lTKBool 
76
77 %_moc.cxx: %.h
78         $(MOC) $< -o $@
79
80 @CONCLUDE@