2004-12-01 10:39:14 +00:00
|
|
|
# GEOM ShHealOper : Shape Healing
|
2003-05-12 15:09:12 +00:00
|
|
|
#
|
2003-07-09 14:33:44 +00:00
|
|
|
# Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
# CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2.1 of the License.
|
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
2004-12-01 10:39:14 +00:00
|
|
|
# See http://www.salome-platform.org or email : webmaster.salome@opencascade.org
|
2003-05-12 15:09:12 +00:00
|
|
|
#
|
2003-07-09 14:33:44 +00:00
|
|
|
#
|
|
|
|
#
|
|
|
|
# File : Makefile.in
|
2004-12-01 10:39:14 +00:00
|
|
|
# Author : Alexander SLADKOV
|
2003-07-09 14:33:44 +00:00
|
|
|
# Module : GEOM
|
2004-12-01 10:39:14 +00:00
|
|
|
# $Header:
|
2003-05-12 15:09:12 +00:00
|
|
|
|
|
|
|
top_srcdir=@top_srcdir@
|
2003-07-10 14:28:33 +00:00
|
|
|
top_builddir=../..
|
2003-05-12 15:09:12 +00:00
|
|
|
srcdir=@srcdir@
|
2004-12-01 10:39:14 +00:00
|
|
|
VPATH=.:@srcdir@
|
2003-05-12 15:09:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
@COMMENCE@
|
|
|
|
|
|
|
|
# Libraries targets
|
2004-12-01 10:39:14 +00:00
|
|
|
LIB = libShHealOper.la
|
|
|
|
|
|
|
|
LIB_SRC = \
|
|
|
|
ShHealOper_CloseContour.cxx \
|
|
|
|
ShHealOper_EdgeDivide.cxx \
|
|
|
|
ShHealOper_FillHoles.cxx \
|
|
|
|
ShHealOper_RemoveFace.cxx \
|
|
|
|
ShHealOper_RemoveInternalWires.cxx \
|
|
|
|
ShHealOper_Sewing.cxx \
|
|
|
|
ShHealOper_ShapeProcess.cxx \
|
|
|
|
ShHealOper_SplitCurve2d.cxx \
|
|
|
|
ShHealOper_SplitCurve3d.cxx \
|
|
|
|
ShHealOper_Tool.cxx \
|
2003-05-12 15:09:12 +00:00
|
|
|
|
|
|
|
LIB_CLIENT_IDL =
|
|
|
|
LIB_SERVER_IDL =
|
|
|
|
|
|
|
|
# header files
|
2004-12-01 10:39:14 +00:00
|
|
|
EXPORT_HEADERS = \
|
|
|
|
ShHealOper_CloseContour.hxx \
|
|
|
|
ShHealOper_EdgeDivide.hxx \
|
|
|
|
ShHealOper_FillHoles.hxx \
|
|
|
|
ShHealOper_RemoveFace.hxx \
|
|
|
|
ShHealOper_RemoveInternalWires.hxx \
|
|
|
|
ShHealOper_Sewing.hxx \
|
|
|
|
ShHealOper_ShapeProcess.hxx \
|
|
|
|
ShHealOper_SpiltCurve2d.hxx \
|
|
|
|
ShHealOper_SplitCurve2d.hxx \
|
|
|
|
ShHealOper_SplitCurve3d.hxx \
|
|
|
|
ShHealOper_Tool.hxx
|
|
|
|
|
|
|
|
# idl files
|
|
|
|
EXPORT_IDLS=
|
2003-05-12 15:09:12 +00:00
|
|
|
|
|
|
|
CPPFLAGS += $(OCC_INCLUDES) -I${KERNEL_ROOT_DIR}/include/salome
|
|
|
|
CXXFLAGS += $(OCC_CXXFLAGS) -I${KERNEL_ROOT_DIR}/include/salome
|
|
|
|
|
2005-11-11 09:44:55 +00:00
|
|
|
LDFLAGS += $(CAS_KERNEL) $(CAS_MATH) $(CAS_TKTopAlgo) $(CAS_LDPATH) -lTKBool -lTKShHealing
|
2003-05-12 15:09:12 +00:00
|
|
|
|
2004-12-01 10:39:14 +00:00
|
|
|
%_moc.cxx: %.h
|
|
|
|
$(MOC) $< -o $@
|
2003-05-12 15:09:12 +00:00
|
|
|
|
2004-12-01 10:39:14 +00:00
|
|
|
@CONCLUDE@
|