mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-15 18:18:35 +05:00
78 lines
2.2 KiB
Makefile
78 lines
2.2 KiB
Makefile
# Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
|
|
#
|
|
# Copyright (C) 2003-2007 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
|
|
#
|
|
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
|
#
|
|
# GEOM NMTAlgo : partition algorithm
|
|
# File : Makefile.in
|
|
# Author : Julia DOROVSKIKH
|
|
# Modified by : Alexander BORODIN (OCN) - autotools usage
|
|
# Module : GEOM
|
|
# $Header$
|
|
#
|
|
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
|
|
|
# header files
|
|
salomeinclude_HEADERS = \
|
|
NMTAlgo_Splitter1.hxx \
|
|
NMTAlgo_Splitter1.ixx \
|
|
NMTAlgo_Splitter1.jxx \
|
|
NMTAlgo_Splitter.hxx \
|
|
NMTAlgo_Splitter.ixx \
|
|
NMTAlgo_Splitter.jxx \
|
|
NMTAlgo_Builder.hxx \
|
|
NMTAlgo_Builder.ixx \
|
|
NMTAlgo_Builder.jxx \
|
|
NMTAlgo_Algo.hxx \
|
|
NMTAlgo_Algo.ixx \
|
|
NMTAlgo_Algo.jxx \
|
|
NMTAlgo_Loop3d.hxx \
|
|
NMTAlgo_Loop3d.ixx \
|
|
NMTAlgo_Loop3d.jxx \
|
|
NMTAlgo_Tools.hxx \
|
|
NMTAlgo_Tools.ixx \
|
|
NMTAlgo_Tools.jxx
|
|
|
|
# Libraries targets
|
|
lib_LTLIBRARIES = libNMTAlgo.la
|
|
|
|
dist_libNMTAlgo_la_SOURCES = \
|
|
NMTAlgo_Algo.cxx \
|
|
NMTAlgo_Builder.cxx \
|
|
NMTAlgo_Loop3d.cxx \
|
|
NMTAlgo_Splitter.cxx \
|
|
NMTAlgo_Splitter1.cxx \
|
|
NMTAlgo_Splitter_1.cxx \
|
|
NMTAlgo_Splitter_2.cxx \
|
|
NMTAlgo_Tools.cxx
|
|
|
|
# additional information to compile and link file
|
|
|
|
libNMTAlgo_la_CPPFLAGS = \
|
|
$(CAS_CPPFLAGS) \
|
|
$(KERNEL_CXXFLAGS) \
|
|
-I$(srcdir)/../NMTDS \
|
|
-I$(srcdir)/../NMTTools
|
|
|
|
libNMTAlgo_la_LDFLAGS = \
|
|
$(STDLIB) \
|
|
$(CAS_LDPATH) -lTKBool -lTKBO \
|
|
$(KERNEL_LDFLAGS) \
|
|
../NMTTools/libNMTTools.la
|