Salome HOME
Fix bug 12796: Warning missed for the bad file 'test18.med'
[modules/smesh.git] / src / SMDS / Makefile.in
1 #  SMESH SMDS : implementaion of Salome mesh data structure
2 #
3 #  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5
6 #  This library is free software; you can redistribute it and/or 
7 #  modify it under the terms of the GNU Lesser General Public 
8 #  License as published by the Free Software Foundation; either 
9 #  version 2.1 of the License. 
10
11 #  This library is distributed in the hope that it will be useful, 
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 #  Lesser General Public License for more details. 
15
16 #  You should have received a copy of the GNU Lesser General Public 
17 #  License along with this library; if not, write to the Free Software 
18 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19
20 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22 #
23 #
24 #  File   : Makefile.in
25 #  Author : Patrick GOLDBRONN (CEA)
26 #  Module : SMESH
27
28 top_srcdir=@top_srcdir@
29 top_builddir=../..
30 srcdir=@srcdir@
31 VPATH=.:@srcdir@:@top_srcdir@/idl
32 KERNEL_CXXFLAGS=@KERNEL_CXXFLAGS@
33
34
35 @COMMENCE@
36
37 # Libraries targets
38
39 LIB = libSMDS.la 
40 LIB_SRC = \
41         SMDS_MeshObject.cxx \
42         SMDS_MeshElement.cxx \
43         SMDS_Position.cxx \
44         SMDS_EdgePosition.cxx \
45         SMDS_FacePosition.cxx \
46         SMDS_SpacePosition.cxx \
47         SMDS_VertexPosition.cxx \
48         SMDS_MeshNode.cxx \
49         SMDS_MeshEdge.cxx \
50         SMDS_MeshFace.cxx \
51         SMDS_MeshVolume.cxx \
52         SMDS_MeshElementIDFactory.cxx \
53         SMDS_MeshGroup.cxx \
54         SMDS_MeshIDFactory.cxx \
55         SMDS_Mesh.cxx \
56         SMDS_IteratorOfElements.cxx \
57         SMDS_VolumeOfFaces.cxx \
58         SMDS_VolumeOfNodes.cxx \
59         SMDS_PolyhedralVolumeOfNodes.cxx \
60         SMDS_FaceOfEdges.cxx \
61         SMDS_FaceOfNodes.cxx \
62         SMDS_PolygonalFaceOfNodes.cxx \
63         SMDS_VolumeTool.cxx \
64         SMDS_QuadraticEdge.cxx \
65         SMDS_QuadraticFaceOfNodes.cxx \
66         SMDS_QuadraticVolumeOfNodes.cxx
67
68
69 LIB_CLIENT_IDL = 
70 LIB_SERVER_IDL = 
71
72 # Executables targets
73 BIN =
74 BIN_SRC =
75 BIN_CLIENT_IDL = 
76 BIN_SERVER_IDL = 
77
78 # header files 
79 EXPORT_HEADERS= \
80         SMDS_TypeOfPosition.hxx \
81         SMDSAbs_ElementType.hxx \
82         SMDS_EdgePosition.hxx \
83         SMDS_ElemIterator.hxx \
84         SMDS_FacePosition.hxx \
85         SMDS_Mesh.hxx \
86         SMDS_MeshEdge.hxx \
87         SMDS_MeshElement.hxx \
88         SMDS_MeshElementIDFactory.hxx \
89         SMDS_MeshFace.hxx \
90         SMDS_MeshGroup.hxx \
91         SMDS_MeshIDFactory.hxx \
92         SMDS_MeshNode.hxx \
93         SMDS_MeshObject.hxx \
94         SMDS_MeshVolume.hxx \
95         SMDS_Position.hxx \
96         SMDS_SpacePosition.hxx \
97         SMDS_VertexPosition.hxx \
98         SMDS_Iterator.hxx \
99         SMDS_IteratorOfElements.hxx \
100         SMDS_VolumeOfFaces.hxx \
101         SMDS_VolumeOfNodes.hxx \
102         SMDS_PolyhedralVolumeOfNodes.hxx \
103         SMDS_FaceOfEdges.hxx \
104         SMDS_FaceOfNodes.hxx \
105         SMDS_PolygonalFaceOfNodes.hxx \
106         SMDS_VolumeTool.hxx \
107         SMDS_QuadraticEdge.hxx \
108         SMDS_QuadraticFaceOfNodes.hxx \
109         SMDS_QuadraticVolumeOfNodes.hxx \
110         SMDS_SetIterator.hxx
111
112 # additionnal information to compil and link file
113 CPPFLAGS += $(KERNEL_CXXFLAGS) $(OCC_INCLUDES) $(BOOST_CPPFLAGS)
114 CXXFLAGS += $(KERNEL_CXXFLAGS)
115 LDFLAGS  += $(KERNEL_LDFLAGS) $(OCC_KERNEL_LIBS)
116
117
118 # additional file to be cleaned
119 MOSTLYCLEAN =
120 CLEAN =
121 DISTCLEAN =
122
123 @CONCLUDE@