]> SALOME platform Git repositories - modules/geom.git/blob - src/ShHealOper/Makefile.in
Salome HOME
NPAL18111: Bad shape build by partition.
[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.com
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_ChangeOrientation.cxx \
51         ShHealOper_Tool.cxx \
52
53 LIB_CLIENT_IDL = 
54 LIB_SERVER_IDL = 
55
56 # header files 
57 EXPORT_HEADERS = \
58         ShHealOper_CloseContour.hxx \
59         ShHealOper_EdgeDivide.hxx \
60         ShHealOper_FillHoles.hxx \
61         ShHealOper_RemoveFace.hxx \
62         ShHealOper_RemoveInternalWires.hxx \
63         ShHealOper_Sewing.hxx \
64         ShHealOper_ShapeProcess.hxx \
65         ShHealOper_SpiltCurve2d.hxx \
66         ShHealOper_SplitCurve2d.hxx \
67         ShHealOper_SplitCurve3d.hxx \
68         ShHealOper_ChangeOrientation.hxx \
69         ShHealOper_Tool.hxx
70
71 # idl files
72 EXPORT_IDLS=
73
74 CPPFLAGS += $(OCC_INCLUDES) $(KERNEL_CXXFLAGS)
75 CXXFLAGS += $(OCC_CXXFLAGS) $(KERNEL_CXXFLAGS)
76
77 LDFLAGS += $(CAS_KERNEL) $(CAS_MATH) $(CAS_TKTopAlgo) $(CAS_LDPATH) -lTKBool -lTKShHealing
78
79 %_moc.cxx: %.h
80         $(MOC) $< -o $@
81
82 @CONCLUDE@