2012-08-09 16:03:55 +06:00
|
|
|
# Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE
|
2009-02-17 10:27:49 +05:00
|
|
|
#
|
2012-08-09 16:03:55 +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.
|
2009-02-17 10:27:49 +05:00
|
|
|
#
|
2012-08-09 16:03:55 +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.
|
2003-05-19 19:18:36 +06:00
|
|
|
#
|
2012-08-09 16:03:55 +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
|
2003-05-19 19:18:36 +06:00
|
|
|
#
|
2012-08-09 16:03:55 +06:00
|
|
|
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2003-07-10 15:06:41 +06:00
|
|
|
#
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
# SMESH DriverDAT : driver to read and write 'dat' files
|
2003-07-10 15:06:41 +06:00
|
|
|
# File : Makefile.in
|
|
|
|
# Author : Marc Tajchman (CEA)
|
2008-03-07 12:47:05 +05:00
|
|
|
# Modified by : Alexander BORODIN (OCN) - autotools usage
|
2003-07-10 15:06:41 +06:00
|
|
|
# Module : SMESH
|
|
|
|
# $Header$
|
2009-02-17 10:27:49 +05:00
|
|
|
#
|
2008-03-07 12:47:05 +05:00
|
|
|
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
2003-05-19 19:18:36 +06:00
|
|
|
|
|
|
|
# header files
|
2008-03-07 12:47:05 +05:00
|
|
|
salomeinclude_HEADERS = \
|
|
|
|
DriverDAT_R_SMDS_Mesh.h \
|
|
|
|
DriverDAT_W_SMDS_Mesh.h \
|
|
|
|
SMESH_DriverDAT.hxx
|
2003-05-19 19:18:36 +06:00
|
|
|
|
|
|
|
# Libraries targets
|
2008-03-07 12:47:05 +05:00
|
|
|
lib_LTLIBRARIES = libMeshDriverDAT.la
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
dist_libMeshDriverDAT_la_SOURCES = \
|
|
|
|
DriverDAT_R_SMDS_Mesh.cxx \
|
2012-08-09 16:03:55 +06:00
|
|
|
DriverDAT_W_SMDS_Mesh.cxx
|
2003-05-19 19:18:36 +06:00
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
# Executables targets
|
|
|
|
bin_PROGRAMS = DAT_Test
|
|
|
|
dist_DAT_Test_SOURCES = \
|
|
|
|
DAT_Test.cxx
|
2003-05-19 19:18:36 +06:00
|
|
|
|
|
|
|
# additionnal information to compil and link file
|
2008-03-07 12:47:05 +05:00
|
|
|
libMeshDriverDAT_la_CPPFLAGS = \
|
|
|
|
$(KERNEL_CXXFLAGS) \
|
|
|
|
$(CAS_CPPFLAGS) \
|
2012-08-09 16:03:55 +06:00
|
|
|
$(VTK_INCLUDES) \
|
2008-03-07 12:47:05 +05:00
|
|
|
$(BOOST_CPPFLAGS) \
|
|
|
|
-I$(srcdir)/../Driver \
|
|
|
|
-I$(srcdir)/../SMDS \
|
2012-10-08 17:56:59 +06:00
|
|
|
-I$(srcdir)/../SMESHUtils \
|
2008-03-07 12:47:05 +05:00
|
|
|
-I$(srcdir)/../SMESHDS
|
2003-05-19 19:18:36 +06:00
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
libMeshDriverDAT_la_LDFLAGS = \
|
|
|
|
../Driver/libMeshDriver.la \
|
2012-08-09 16:03:55 +06:00
|
|
|
$(KERNEL_LDFLAGS) -lSALOMEBasics \
|
2008-03-07 12:47:05 +05:00
|
|
|
$(CAS_KERNEL)
|
2003-05-19 19:18:36 +06:00
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
DAT_Test_CPPFLAGS = \
|
|
|
|
$(libMeshDriverDAT_la_CPPFLAGS)
|
2003-05-19 19:18:36 +06:00
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
DAT_Test_LDADD = \
|
|
|
|
libMeshDriverDAT.la \
|
|
|
|
../Driver/libMeshDriver.la \
|
|
|
|
../SMDS/libSMDS.la \
|
|
|
|
$(KERNEL_LDFLAGS) -lOpUtil -lSALOMELocalTrace -lSALOMEBasics
|
2003-05-19 19:18:36 +06:00
|
|
|
|