2003-07-10 15:49:12 +06:00
|
|
|
# SMESH SMDS : implementaion of Salome mesh data structure
|
2003-05-19 19:49:00 +06:00
|
|
|
#
|
2003-07-10 15:49:12 +06:00
|
|
|
# Copyright (C) 2003 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
|
|
|
|
#
|
2006-06-01 17:39:17 +06:00
|
|
|
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2003-05-19 19:49:00 +06:00
|
|
|
#
|
2003-07-10 15:49:12 +06:00
|
|
|
#
|
|
|
|
#
|
|
|
|
# File : Makefile.in
|
|
|
|
# Author : Patrick GOLDBRONN (CEA)
|
|
|
|
# Module : SMESH
|
2003-05-19 19:49:00 +06:00
|
|
|
|
|
|
|
top_srcdir=@top_srcdir@
|
|
|
|
top_builddir=../..
|
|
|
|
srcdir=@srcdir@
|
|
|
|
VPATH=.:@srcdir@:@top_srcdir@/idl
|
2006-06-01 17:39:17 +06:00
|
|
|
KERNEL_CXXFLAGS=@KERNEL_CXXFLAGS@
|
2003-05-19 19:49:00 +06:00
|
|
|
|
|
|
|
|
|
|
|
@COMMENCE@
|
|
|
|
|
|
|
|
# Libraries targets
|
|
|
|
|
|
|
|
LIB = libSMDS.la
|
2003-09-03 23:16:58 +06:00
|
|
|
LIB_SRC = \
|
|
|
|
SMDS_MeshObject.cxx \
|
|
|
|
SMDS_MeshElement.cxx \
|
|
|
|
SMDS_Position.cxx \
|
2003-05-19 19:49:00 +06:00
|
|
|
SMDS_EdgePosition.cxx \
|
|
|
|
SMDS_FacePosition.cxx \
|
2003-09-03 23:16:58 +06:00
|
|
|
SMDS_SpacePosition.cxx \
|
|
|
|
SMDS_VertexPosition.cxx \
|
|
|
|
SMDS_MeshNode.cxx \
|
2003-05-19 19:49:00 +06:00
|
|
|
SMDS_MeshEdge.cxx \
|
|
|
|
SMDS_MeshFace.cxx \
|
|
|
|
SMDS_MeshVolume.cxx \
|
2003-09-03 23:16:58 +06:00
|
|
|
SMDS_MeshElementIDFactory.cxx \
|
2003-05-19 19:49:00 +06:00
|
|
|
SMDS_MeshGroup.cxx \
|
2003-09-03 23:16:58 +06:00
|
|
|
SMDS_MeshIDFactory.cxx \
|
|
|
|
SMDS_Mesh.cxx \
|
|
|
|
SMDS_IteratorOfElements.cxx \
|
|
|
|
SMDS_VolumeOfFaces.cxx \
|
|
|
|
SMDS_VolumeOfNodes.cxx \
|
2005-06-07 19:22:20 +06:00
|
|
|
SMDS_PolyhedralVolumeOfNodes.cxx \
|
2003-09-03 23:16:58 +06:00
|
|
|
SMDS_FaceOfEdges.cxx \
|
2003-09-12 21:12:19 +06:00
|
|
|
SMDS_FaceOfNodes.cxx \
|
2005-06-07 19:22:20 +06:00
|
|
|
SMDS_PolygonalFaceOfNodes.cxx \
|
2006-03-13 20:29:49 +05:00
|
|
|
SMDS_VolumeTool.cxx \
|
|
|
|
SMDS_QuadraticEdge.cxx \
|
|
|
|
SMDS_QuadraticFaceOfNodes.cxx \
|
|
|
|
SMDS_QuadraticVolumeOfNodes.cxx
|
2003-05-19 19:49:00 +06:00
|
|
|
|
|
|
|
|
|
|
|
LIB_CLIENT_IDL =
|
|
|
|
LIB_SERVER_IDL =
|
|
|
|
|
|
|
|
# Executables targets
|
|
|
|
BIN =
|
|
|
|
BIN_SRC =
|
|
|
|
BIN_CLIENT_IDL =
|
|
|
|
BIN_SERVER_IDL =
|
|
|
|
|
|
|
|
# header files
|
2003-09-03 23:16:58 +06:00
|
|
|
EXPORT_HEADERS= \
|
|
|
|
SMDS_TypeOfPosition.hxx \
|
|
|
|
SMDSAbs_ElementType.hxx \
|
2003-05-19 19:49:00 +06:00
|
|
|
SMDS_EdgePosition.hxx \
|
2005-01-20 11:25:54 +05:00
|
|
|
SMDS_ElemIterator.hxx \
|
2003-05-19 19:49:00 +06:00
|
|
|
SMDS_FacePosition.hxx \
|
|
|
|
SMDS_Mesh.hxx \
|
|
|
|
SMDS_MeshEdge.hxx \
|
|
|
|
SMDS_MeshElement.hxx \
|
|
|
|
SMDS_MeshElementIDFactory.hxx \
|
|
|
|
SMDS_MeshFace.hxx \
|
2003-09-03 23:16:58 +06:00
|
|
|
SMDS_MeshGroup.hxx \
|
2003-05-19 19:49:00 +06:00
|
|
|
SMDS_MeshIDFactory.hxx \
|
|
|
|
SMDS_MeshNode.hxx \
|
|
|
|
SMDS_MeshObject.hxx \
|
|
|
|
SMDS_MeshVolume.hxx \
|
|
|
|
SMDS_Position.hxx \
|
|
|
|
SMDS_SpacePosition.hxx \
|
|
|
|
SMDS_VertexPosition.hxx \
|
2003-09-03 23:16:58 +06:00
|
|
|
SMDS_Iterator.hxx \
|
|
|
|
SMDS_IteratorOfElements.hxx \
|
|
|
|
SMDS_VolumeOfFaces.hxx \
|
|
|
|
SMDS_VolumeOfNodes.hxx \
|
2005-06-07 19:22:20 +06:00
|
|
|
SMDS_PolyhedralVolumeOfNodes.hxx \
|
2003-09-03 23:16:58 +06:00
|
|
|
SMDS_FaceOfEdges.hxx \
|
2003-09-12 21:12:19 +06:00
|
|
|
SMDS_FaceOfNodes.hxx \
|
2005-06-07 19:22:20 +06:00
|
|
|
SMDS_PolygonalFaceOfNodes.hxx \
|
2006-03-13 20:29:49 +05:00
|
|
|
SMDS_VolumeTool.hxx \
|
|
|
|
SMDS_QuadraticEdge.hxx \
|
|
|
|
SMDS_QuadraticFaceOfNodes.hxx \
|
|
|
|
SMDS_QuadraticVolumeOfNodes.hxx \
|
|
|
|
SMDS_SetIterator.hxx
|
2003-05-19 19:49:00 +06:00
|
|
|
|
|
|
|
# additionnal information to compil and link file
|
2006-06-01 17:39:17 +06:00
|
|
|
CPPFLAGS += $(KERNEL_CXXFLAGS) $(OCC_INCLUDES) $(BOOST_CPPFLAGS)
|
|
|
|
CXXFLAGS += $(KERNEL_CXXFLAGS)
|
|
|
|
LDFLAGS += $(KERNEL_LDFLAGS) $(OCC_KERNEL_LIBS)
|
2003-05-19 19:49:00 +06:00
|
|
|
|
2003-07-10 15:49:12 +06:00
|
|
|
|
2003-05-19 19:49:00 +06:00
|
|
|
# additional file to be cleaned
|
|
|
|
MOSTLYCLEAN =
|
|
|
|
CLEAN =
|
|
|
|
DISTCLEAN =
|
|
|
|
|
|
|
|
@CONCLUDE@
|