Salome HOME
update __init__ function of Mesh_Triangle class
[modules/smesh.git] / src / OBJECT / Makefile.in
1 #  SMESH OBJECT : interactive object for SMESH visualization
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 #  Module : SMESH
26
27 top_srcdir=@top_srcdir@
28 top_builddir=../..
29 srcdir=@srcdir@
30 VPATH=.:@srcdir@:@top_srcdir@/idl:$(top_builddir)/idl
31
32 @COMMENCE@
33
34 EXPORT_HEADERS = \
35         SMESH_Actor.h \
36         SMESH_Object.h \
37         SMESH_ObjectDef.h \
38         SMESH_ActorUtils.h
39
40
41 # Libraries targets
42
43 LIB = libSMESHObject.la
44 LIB_SRC = \
45           SMESH_Object.cxx \
46           SMESH_DeviceActor.cxx \
47           SMESH_Actor.cxx \
48           SMESH_ExtractGeometry.cxx \
49           SMESH_ActorUtils.cxx
50
51 LIB_CLIENT_IDL = SALOME_Exception.idl \
52                  SALOME_GenericObj.idl \
53                  SALOME_Comm.idl \
54                  SALOME_Component.idl \
55                  MED.idl \
56                  SMESH_Mesh.idl \
57                  SMESH_Group.idl \
58                  SALOMEDS.idl \
59                  SMESH_Gen.idl \
60                  GEOM_Gen.idl \
61                  SMESH_Hypothesis.idl
62
63
64 # Executables targets
65 BIN = 
66 BIN_SRC =
67
68 CPPFLAGS+= \
69         $(KERNEL_CXXFLAGS) \
70         $(GUI_CXXFLAGS) \
71         $(OCC_INCLUDES) \
72         $(VTK_INCLUDES) \
73         $(BOOST_CPPFLAGS) \
74         $(QT_INCLUDES) \
75         $(MED_CXXFLAGS)
76 LDFLAGS+= \
77         $(KERNEL_LDFLAGS) \
78         $(GUI_LDFLAGS) \
79         $(OCC_KERNEL_LIBS) \
80         $(VTK_LIBS) \
81         $(MED_LDFLAGS) \
82         -lSMDS \
83         -lSMESHClient \
84         -lSalomeApp \
85         -lSalomeObject \
86         -lSMESHControls
87
88 LDFLAGSFORBIN += \
89         $(GEOM_LDFLAGS) \
90         $(MED_LDFLAGS) \
91         $(LDFLAGS) \
92         -lqtx \
93         -lsuit \
94         -lstd \
95         -lCAM \
96         -lLightApp \
97         -lObjBrowser \
98         -lSalomePrs \
99         -lSalomeDS \
100         -lTOOLSDS \
101         -lSalomeDSImpl \
102         -lSalomeDSClient \
103         -lSalomeHDFPersist \
104         -lSalomeResourcesManager \
105         -lSalomeLifeCycleCORBA \
106         -lSalomeNotification \
107         -lSalomeContainer \
108         -lSalomeCatalog \
109         -lSalomeSession \
110         -lRegistry \
111         -lNMTTools \
112         -lNMTDS \
113         -lmed_V2_1 \
114         -lMEDWrapper \
115         -lMEDWrapperBase \
116         -lMEDWrapper_V2_1 \
117         -lMEDWrapper_V2_2 \
118         -lPlot2d \
119         -lGLViewer \
120         -lOCCViewer \
121         -lVTKViewer \
122         -lSVTK \
123         -lSOCC \
124         -lSPlot2d \
125         -lSUPERVGraph \
126         -lPyInterp \
127         -lPythonConsole \
128         -lLogWindow \
129         -lLightApp \
130         -lSalomeContainer \
131         -lToolsGUI \
132         -lSalomeNS \
133         -lEvent \
134         -lSalomeGenericObj \
135         -lSALOMELocalTrace \
136         -lwith_loggerTraceCollector \
137         -lSALOMEBasics \
138         -lOpUtil
139
140 @CONCLUDE@