Salome HOME
update __init__ function of Mesh_Triangle class
[modules/smesh.git] / src / StdMeshers_I / Makefile.in
1 #  SMESH StdMeshers_I : idl implementation based on 'StdMeshersPlugin' unit's classes
2 #
3 #  Copyright (C) 2003  CEA
4
5 #  This library is free software; you can redistribute it and/or 
6 #  modify it under the terms of the GNU Lesser General Public 
7 #  License as published by the Free Software Foundation; either 
8 #  version 2.1 of the License. 
9
10 #  This library is distributed in the hope that it will be useful, 
11 #  but WITHOUT ANY WARRANTY; without even the implied warranty of 
12 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
13 #  Lesser General Public License for more details. 
14
15 #  You should have received a copy of the GNU Lesser General Public 
16 #  License along with this library; if not, write to the Free Software 
17 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
18
19 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #
21 #
22 #
23 #  File   : Makefile.in
24 #  Author : Julia DOROVSKIKH
25 #  Module : SMESH
26 #  $Header$
27
28 top_srcdir=@top_srcdir@
29 top_builddir=../..
30 srcdir=@srcdir@
31 VPATH=.:@srcdir@:@top_srcdir@/idl:$(top_builddir)/idl
32
33
34 @COMMENCE@
35
36 # EXPORT_PYSCRIPTS = smeshpy.py SMESH_test.py
37
38 # header files  
39 EXPORT_HEADERS = \
40         StdMeshers_LocalLength_i.hxx \
41         StdMeshers_StartEndLength_i.hxx \
42         StdMeshers_Arithmetic1D_i.hxx \
43         StdMeshers_NumberOfSegments_i.hxx \
44         StdMeshers_Deflection1D_i.hxx \
45         StdMeshers_Propagation_i.hxx \
46         StdMeshers_LengthFromEdges_i.hxx \
47         StdMeshers_MaxElementArea_i.hxx \
48         StdMeshers_MaxElementVolume_i.hxx \
49         StdMeshers_NotConformAllowed_i.hxx \
50         StdMeshers_Regular_1D_i.hxx \
51         StdMeshers_Quadrangle_2D_i.hxx \
52         StdMeshers_MEFISTO_2D_i.hxx \
53         StdMeshers_Hexa_3D_i.hxx \
54         StdMeshers_AutomaticLength_i.hxx \
55         StdMeshers_QuadranglePreference_i.hxx \
56         StdMeshers_QuadraticMesh_i.hxx \
57         StdMeshers_NumberOfLayers_i.hxx \
58         StdMeshers_Prism_3D_i.hxx \
59         StdMeshers_ProjectionSource1D_i.hxx \
60         StdMeshers_ProjectionSource2D_i.hxx \
61         StdMeshers_ProjectionSource3D_i.hxx \
62         StdMeshers_Projection_1D_2D_3D_i.hxx \
63         StdMeshers_ObjRefUlils.hxx \
64         StdMeshers_LayerDistribution_i.hxx \
65         SMESH_StdMeshers_I.hxx
66
67 # Libraries targets
68
69 LIB= libStdMeshersEngine.la
70
71 LIB_SRC = \
72         StdMeshers_i.cxx \
73         StdMeshers_LocalLength_i.cxx \
74         StdMeshers_StartEndLength_i.cxx \
75         StdMeshers_Arithmetic1D_i.cxx \
76         StdMeshers_NumberOfSegments_i.cxx \
77         StdMeshers_Deflection1D_i.cxx \
78         StdMeshers_Propagation_i.cxx \
79         StdMeshers_LengthFromEdges_i.cxx \
80         StdMeshers_MaxElementArea_i.cxx \
81         StdMeshers_MaxElementVolume_i.cxx \
82         StdMeshers_NotConformAllowed_i.cxx \
83         StdMeshers_Regular_1D_i.cxx \
84         StdMeshers_Quadrangle_2D_i.cxx \
85         StdMeshers_MEFISTO_2D_i.cxx \
86         StdMeshers_Hexa_3D_i.cxx \
87         StdMeshers_AutomaticLength_i.cxx \
88         StdMeshers_QuadranglePreference_i.cxx \
89         StdMeshers_QuadraticMesh_i.cxx \
90         StdMeshers_NumberOfLayers_i.cxx \
91         StdMeshers_Prism_3D_i.cxx \
92         StdMeshers_ProjectionSource1D_i.cxx \
93         StdMeshers_ProjectionSource2D_i.cxx \
94         StdMeshers_ProjectionSource3D_i.cxx \
95         StdMeshers_Projection_1D_2D_3D_i.cxx \
96         StdMeshers_ObjRefUlils.cxx \
97         StdMeshers_LayerDistribution_i.cxx
98
99 LIB_SERVER_IDL = SMESH_BasicHypothesis.idl
100
101 LIB_CLIENT_IDL = \
102         SALOMEDS.idl SALOME_Exception.idl \
103         GEOM_Gen.idl MED.idl SALOMEDS_Attributes.idl \
104         SMESH_Gen.idl SMESH_Hypothesis.idl SMESH_Group.idl \
105         SALOME_Comm.idl SALOME_Component.idl SALOME_GenericObj.idl SMESH_Mesh.idl
106
107 # Executables targets
108 BIN = 
109 BIN_SRC = 
110
111 # additionnal information to compil and link file
112 CPPFLAGS+= $(OCC_INCLUDES) $(HDF5_INCLUDES) $(KERNEL_CXXFLAGS) \
113            $(GEOM_CXXFLAGS) $(BOOST_CPPFLAGS)
114 CXXFLAGS+= $(OCC_CXXFLAGS) $(HDF5_INCLUDES) $(KERNEL_CXXFLAGS) $(GEOM_CXXFLAGS)
115
116 #IDLCXXFLAGS+= -Wbtp
117
118 LDFLAGS+= $(HDF5_LIBS) -lStdMeshers -lSMESHEngine $(KERNEL_LDFLAGS)
119
120 @CONCLUDE@