smesh/src/DriverSTL/Makefile.am

75 lines
2.1 KiB
Makefile
Raw Normal View History

2012-06-05 18:18:07 +06:00
# Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE
2009-02-17 10:27:49 +05:00
#
2011-06-06 14:15:39 +06:00
# 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.
2004-12-01 15:48:31 +05:00
#
2011-06-06 14:15:39 +06:00
# 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.
2004-12-01 15:48:31 +05:00
#
2011-06-06 14:15:39 +06:00
# 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 15:48:31 +05:00
#
2011-06-06 14:15:39 +06:00
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2004-12-01 15:48:31 +05:00
#
2010-05-14 21:32:37 +06:00
2009-02-17 10:27:49 +05:00
# SMESH DriverSTL : driver to read and write 'stl' files
2004-12-01 15:48:31 +05:00
# File : Makefile.in
# Author : Marc Tajchman (CEA)
# Modified by : Alexander BORODIN (OCN) - autotools usage
2004-12-01 15:48:31 +05:00
# Module : SMESH
# $Header$
2009-02-17 10:27:49 +05:00
#
include $(top_srcdir)/adm_local/unix/make_common_starter.am
2004-12-01 15:48:31 +05:00
# header files
salomeinclude_HEADERS = \
DriverSTL_R_SMDS_Mesh.h \
DriverSTL_W_SMDS_Mesh.h \
SMESH_DriverSTL.hxx
2004-12-01 15:48:31 +05:00
# Libraries targets
lib_LTLIBRARIES = libMeshDriverSTL.la
dist_libMeshDriverSTL_la_SOURCES = \
DriverSTL_R_SMDS_Mesh.cxx \
DriverSTL_W_SMDS_Mesh.cxx
2004-12-01 15:48:31 +05:00
# Executables targets
bin_PROGRAMS = STL_Test
2004-12-01 15:48:31 +05:00
dist_STL_Test_SOURCES = \
STL_Test.cxx
2004-12-01 15:48:31 +05:00
# additionnal information to compil and link file
libMeshDriverSTL_la_CPPFLAGS = \
$(KERNEL_CXXFLAGS) \
$(CAS_CPPFLAGS) \
$(VTK_INCLUDES) \
$(BOOST_CPPFLAGS) \
-I$(srcdir)/../Driver \
-I$(srcdir)/../SMESH \
-I$(srcdir)/../SMESHUtils \
-I$(srcdir)/../SMDS
2004-12-01 15:48:31 +05:00
libMeshDriverSTL_la_LDFLAGS = \
../Driver/libMeshDriver.la \
../SMDS/libSMDS.la \
$(CAS_LDPATH) -lTKernel -lTKSTL -lTKTopAlgo -lTKMesh
2004-12-01 15:48:31 +05:00
STL_Test_CPPFLAGS = \
$(libMeshDriverSTL_la_CPPFLAGS)
2004-12-01 15:48:31 +05:00
STL_Test_LDADD = \
libMeshDriverSTL.la \
../Driver/libMeshDriver.la \
../SMDS/libSMDS.la \
$(KERNEL_LDFLAGS) -lOpUtil -lSALOMELocalTrace -lSALOMEBasics \
$(CAS_LDPATH) -lTKernel -lTKSTL -lTKTopAlgo -lTKMesh -lTKBO
2004-12-01 15:48:31 +05:00