Salome HOME
d64abd6fe753a254ba54839f98d59ef05d8c88b4
[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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
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
33
34 @COMMENCE@
35
36 # Libraries targets
37
38 LIB = libSMDS.la 
39 LIB_SRC = \
40         SMDS_MeshObject.cxx \
41         SMDS_MeshElement.cxx \
42         SMDS_Position.cxx \
43         SMDS_EdgePosition.cxx \
44         SMDS_FacePosition.cxx \
45         SMDS_SpacePosition.cxx \
46         SMDS_VertexPosition.cxx \
47         SMDS_MeshNode.cxx \
48         SMDS_MeshEdge.cxx \
49         SMDS_MeshFace.cxx \
50         SMDS_MeshVolume.cxx \
51         SMDS_MeshElementIDFactory.cxx \
52         SMDS_MeshGroup.cxx \
53         SMDS_MeshIDFactory.cxx \
54         SMDS_Mesh.cxx \
55         SMDS_IteratorOfElements.cxx \
56         SMDS_VolumeOfFaces.cxx \
57         SMDS_VolumeOfNodes.cxx \
58         SMDS_FaceOfEdges.cxx \
59         SMDS_FaceOfNodes.cxx \
60         SMDS_VolumeTool.cxx
61 #       SMDS_Tria3OfNodes.cxx \
62 #       SMDS_HexahedronOfNodes.cxx
63
64 #SMDSControl_BoundaryEdges.cxx \
65 #SMDSControl_BoundaryFaces.cxx \
66 #SMDSControl.cxx \
67 #SMDSControl_MeshBoundary.cxx \
68 #SMDSEdit_Transform.cxx \
69 #SMDS_MeshNodeIDFactory.cxx \
70 #SMDS_MeshPrism.cxx \
71 #SMDS_MeshPyramid.cxx \
72 #SMDS_MeshQuadrangle.cxx \
73 #SMDS_MeshTetrahedron.cxx \
74 #SMDS_MeshTriangle.cxx \
75
76
77 LIB_CLIENT_IDL = 
78 LIB_SERVER_IDL = 
79
80 # Executables targets
81 BIN =
82 BIN_SRC =
83 BIN_CLIENT_IDL = 
84 BIN_SERVER_IDL = 
85
86 # header files 
87 EXPORT_HEADERS= \
88         SMDS_TypeOfPosition.hxx \
89         SMDSAbs_ElementType.hxx \
90         SMDS_EdgePosition.hxx \
91         SMDS_ElemIterator.hxx \
92         SMDS_FacePosition.hxx \
93         SMDS_Mesh.hxx \
94         SMDS_MeshEdge.hxx \
95         SMDS_MeshElement.hxx \
96         SMDS_MeshElementIDFactory.hxx \
97         SMDS_MeshFace.hxx \
98         SMDS_MeshGroup.hxx \
99         SMDS_MeshIDFactory.hxx \
100         SMDS_MeshNode.hxx \
101         SMDS_MeshObject.hxx \
102         SMDS_MeshVolume.hxx \
103         SMDS_Position.hxx \
104         SMDS_SpacePosition.hxx \
105         SMDS_VertexPosition.hxx \
106         SMDS_Iterator.hxx \
107         SMDS_IteratorOfElements.hxx \
108         SMDS_VolumeOfFaces.hxx \
109         SMDS_VolumeOfNodes.hxx \
110         SMDS_FaceOfEdges.hxx \
111         SMDS_FaceOfNodes.hxx \
112         SMDS_VolumeTool.hxx
113 #       SMDS_Tria3OfNodes.hxx \
114 #       SMDS_HexahedronOfNodes.hxx
115
116 #SMDSControl_BoundaryEdges.hxx \
117 #SMDSControl_BoundaryFaces.hxx \
118 #SMDSControl.hxx \
119 #SMDSControl_MeshBoundary.hxx \
120 #SMDSEdit_Transform.hxx \
121 #SMDS_MeshPrism.hxx \
122 #SMDS_MeshPyramid.hxx \
123 #SMDS_MeshQuadrangle.hxx \
124 #SMDS_MeshTetrahedron.hxx \
125 #SMDS_MeshTriangle.hxx \
126 #SMDS_MeshNodeIDFactory.hxx
127
128 # additionnal information to compil and link file
129 CPPFLAGS += -I${KERNEL_ROOT_DIR}/include/salome $(OCC_INCLUDES) $(BOOST_CPPFLAGS)
130 CXXFLAGS += -I${KERNEL_ROOT_DIR}/include/salome
131 LDFLAGS  += -L${KERNEL_ROOT_DIR}/lib/salome $(OCC_KERNEL_LIBS)
132
133
134 # additional file to be cleaned
135 MOSTLYCLEAN =
136 CLEAN =
137 DISTCLEAN =
138
139 @CONCLUDE@