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.
|
2003-05-19 19:25:06 +06:00
|
|
|
#
|
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.
|
2003-05-19 19:25:06 +06:00
|
|
|
#
|
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
|
2003-07-10 16:13:42 +06:00
|
|
|
#
|
2009-02-17 10:27:49 +05:00
|
|
|
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2003-07-10 16:13:42 +06:00
|
|
|
#
|
2010-05-14 21:32:37 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
# SMESH SMESHDS : management of mesh data and SMESH document
|
2003-07-10 16:13:42 +06:00
|
|
|
# File : Makefile.in
|
|
|
|
# Author : Patrick GOLDBRONN (CEA)
|
2008-03-07 12:47:05 +05:00
|
|
|
# Modified by : Alexander BORODIN (OCN) - autotools usage
|
2003-07-10 16:13:42 +06:00
|
|
|
# Module : SMESH
|
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:25:06 +06:00
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
# header files
|
|
|
|
salomeinclude_HEADERS = \
|
|
|
|
SMESHDS_Document.hxx \
|
|
|
|
SMESHDS_Hypothesis.hxx \
|
|
|
|
SMESHDS_Mesh.hxx \
|
|
|
|
SMESHDS_Script.hxx \
|
|
|
|
SMESHDS_Command.hxx \
|
|
|
|
SMESHDS_CommandType.hxx \
|
|
|
|
SMESHDS_SubMesh.hxx \
|
|
|
|
SMESHDS_GroupBase.hxx \
|
|
|
|
SMESHDS_Group.hxx \
|
|
|
|
SMESHDS_GroupOnGeom.hxx \
|
|
|
|
SMESH_SMESHDS.hxx \
|
|
|
|
SMESHDS_DataMapOfShape.hxx
|
2003-05-19 19:25:06 +06:00
|
|
|
|
|
|
|
# Libraries targets
|
2008-03-07 12:47:05 +05:00
|
|
|
lib_LTLIBRARIES = libSMESHDS.la
|
2003-05-19 19:25:06 +06:00
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
dist_libSMESHDS_la_SOURCES = \
|
2003-05-19 19:25:06 +06:00
|
|
|
SMESHDS_Document.cxx \
|
|
|
|
SMESHDS_Hypothesis.cxx \
|
|
|
|
SMESHDS_Script.cxx \
|
|
|
|
SMESHDS_Command.cxx \
|
2003-09-04 13:14:51 +06:00
|
|
|
SMESHDS_SubMesh.cxx \
|
2004-06-18 14:34:31 +06:00
|
|
|
SMESHDS_Mesh.cxx \
|
2004-12-01 15:48:31 +05:00
|
|
|
SMESHDS_GroupBase.cxx \
|
|
|
|
SMESHDS_Group.cxx \
|
|
|
|
SMESHDS_GroupOnGeom.cxx
|
2003-05-19 19:25:06 +06:00
|
|
|
|
|
|
|
# additionnal information to compil and link file
|
2008-03-07 12:47:05 +05:00
|
|
|
libSMESHDS_la_CPPFLAGS = \
|
|
|
|
$(KERNEL_CXXFLAGS) \
|
|
|
|
$(CAS_CPPFLAGS) \
|
2010-11-29 18:20:53 +05:00
|
|
|
$(VTK_INCLUDES) \
|
2008-03-07 12:47:05 +05:00
|
|
|
$(BOOST_CPPFLAGS) \
|
|
|
|
-I$(srcdir)/../SMDS
|
2003-05-19 19:25:06 +06:00
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
libSMESHDS_la_LDFLAGS = \
|
|
|
|
../SMDS/libSMDS.la \
|
|
|
|
$(KERNEL_LDFLAGS) -lSALOMELocalTrace \
|
|
|
|
$(CAS_KERNEL) -lTKBRep
|