smesh/src/DriverMED/Makefile.am

95 lines
2.5 KiB
Makefile
Raw Normal View History

2010-05-14 21:32:37 +06:00
# Copyright (C) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE
2009-02-17 10:27:49 +05: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
# 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.
#
2009-02-17 10:27:49 +05: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-06-18 14:34:31 +06:00
#
2009-02-17 10:27:49 +05:00
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2004-06-18 14:34:31 +06:00
#
2010-05-14 21:32:37 +06:00
2009-02-17 10:27:49 +05:00
# SMESH DriverMED : driver to read and write 'med' files
2003-07-10 15:06:41 +06:00
# File : Makefile.in
# Author : Marc Tajchman (CEA)
# Modified by : Alexander BORODIN (OCN) - autotools usage
2003-07-10 15:06:41 +06:00
# Module : SMESH
2004-06-18 14:34:31 +06:00
# $Header$
2009-02-17 10:27:49 +05:00
#
include $(top_srcdir)/adm_local/unix/make_common_starter.am
# header files
salomeinclude_HEADERS = \
DriverMED_R_SMDS_Mesh.h \
DriverMED_R_SMESHDS_Mesh.h \
DriverMED_R_SMESHDS_Document.h \
DriverMED_W_SMDS_Mesh.h \
DriverMED_W_SMESHDS_Mesh.h \
DriverMED_W_SMESHDS_Document.h \
DriverMED_Family.h \
SMESH_DriverMED.hxx
# Libraries targets
lib_LTLIBRARIES = libMeshDriverMED.la
dist_libMeshDriverMED_la_SOURCES = \
2004-06-18 14:34:31 +06:00
DriverMED_R_SMDS_Mesh.cxx \
2003-09-04 17:03:54 +06:00
DriverMED_R_SMESHDS_Mesh.cxx \
DriverMED_R_SMESHDS_Document.cxx \
2004-06-18 14:34:31 +06:00
DriverMED_W_SMDS_Mesh.cxx \
DriverMED_W_SMESHDS_Document.cxx \
DriverMED_W_SMESHDS_Mesh.cxx \
DriverMED_Family.cxx
2004-12-01 15:48:31 +05:00
# Executables targets
bin_PROGRAMS = MED_Test
2004-12-01 15:48:31 +05:00
dist_MED_Test_SOURCES = \
MED_Test.cxx
2004-12-01 15:48:31 +05:00
# additionnal information to compil and link file
libMeshDriverMED_la_CPPFLAGS = \
$(MED_CXXFLAGS) \
@HDF5_INCLUDES@ \
$(KERNEL_CXXFLAGS) \
$(CAS_CPPFLAGS) \
$(VTK_INCLUDES) \
$(BOOST_CPPFLAGS) \
-I$(srcdir)/../Driver \
-I$(srcdir)/../SMDS \
-I$(srcdir)/../SMESHDS
libMeshDriverMED_la_LDFLAGS = \
2009-02-26 20:02:59 +05:00
$(BOOST_LIBS) \
../Driver/libMeshDriver.la \
2009-02-26 20:02:59 +05:00
$(MED_LDFLAGS) -lMEDWrapper -lMEDWrapperBase -lMEDWrapper_V2_1 -lMEDWrapper_V2_2
MED_Test_CPPFLAGS = \
$(libMeshDriverMED_la_CPPFLAGS)
MED_Test_LDADD = \
libMeshDriverMED.la \
../Driver/libMeshDriver.la \
../SMDS/libSMDS.la \
../SMESHDS/libSMESHDS.la \
$(KERNEL_LDFLAGS) \
-lOpUtil \
-lSALOMELocalTrace \
-lSALOMEBasics \
$(MED_LDFLAGS) \
-lMEDWrapper \
-lMEDWrapperBase \
-lMEDWrapper_V2_1 \
-lmed_V2_1 \
-lMEDWrapper_V2_2