mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-24 04:00:32 +05:00
73 lines
2.0 KiB
Makefile
73 lines
2.0 KiB
Makefile
|
# GEOM GEOMAlgo : tools for Glue Faces algorithm
|
||
|
#
|
||
|
# Copyright (C) 2004 CEA
|
||
|
#
|
||
|
# 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
|
||
|
#
|
||
|
# See http://www.salome-platform.org or email : webmaster.salome@opencascade.org
|
||
|
#
|
||
|
#
|
||
|
#
|
||
|
# File : Makefile.in
|
||
|
# Author : Julia DOROVSKIKH
|
||
|
# Module : GEOM
|
||
|
# $Header$
|
||
|
|
||
|
top_srcdir=@top_srcdir@
|
||
|
top_builddir=../..
|
||
|
srcdir=@srcdir@
|
||
|
VPATH=.:@srcdir@
|
||
|
|
||
|
|
||
|
@COMMENCE@
|
||
|
|
||
|
# Libraries targets
|
||
|
LIB = libGEOMAlgo.la
|
||
|
LIB_SRC = \
|
||
|
GEOMAlgo_Algo.cxx \
|
||
|
GEOMAlgo_Gluer.cxx \
|
||
|
GEOMAlgo_IndexedDataMapNodeOfIndexedDataMapOfIntegerShape_0.cxx \
|
||
|
GEOMAlgo_IndexedDataMapNodeOfIndexedDataMapOfPassKeyListOfShape_0.cxx \
|
||
|
GEOMAlgo_IndexedDataMapNodeOfIndexedDataMapOfShapeBox_0.cxx \
|
||
|
GEOMAlgo_IndexedDataMapOfIntegerShape_0.cxx \
|
||
|
GEOMAlgo_IndexedDataMapOfPassKeyListOfShape_0.cxx \
|
||
|
GEOMAlgo_IndexedDataMapOfShapeBox_0.cxx \
|
||
|
GEOMAlgo_PassKey.cxx \
|
||
|
GEOMAlgo_PassKeyMapHasher.cxx \
|
||
|
GEOMAlgo_ShapeAlgo.cxx \
|
||
|
GEOMAlgo_Tools.cxx
|
||
|
|
||
|
LIB_CLIENT_IDL =
|
||
|
LIB_SERVER_IDL =
|
||
|
|
||
|
# header files
|
||
|
EXPORT_HEADERS = \
|
||
|
GEOMAlgo_Gluer.hxx \
|
||
|
GEOMAlgo_ShapeAlgo.hxx \
|
||
|
GEOMAlgo_Algo.hxx
|
||
|
|
||
|
# idl files
|
||
|
EXPORT_IDLS=
|
||
|
|
||
|
|
||
|
CPPFLAGS += $(OCC_INCLUDES) -I${KERNEL_ROOT_DIR}/include/salome
|
||
|
CXXFLAGS += $(OCC_CXXFLAGS) -I${KERNEL_ROOT_DIR}/include/salome
|
||
|
LDFLAGS += $(CAS_LDPATH) -lTKBO -L${KERNEL_ROOT_DIR}/lib/salome
|
||
|
|
||
|
%_moc.cxx: %.h
|
||
|
$(MOC) $< -o $@
|
||
|
|
||
|
@CONCLUDE@
|