Salome HOME
Fix bug 12796: Warning missed for the bad file 'test18.med'
[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                  MED.idl \
55                  SMESH_Mesh.idl \
56                  SMESH_Group.idl \
57                  SALOMEDS.idl \
58                  SMESH_Gen.idl \
59                  GEOM_Gen.idl \
60                  SMESH_Hypothesis.idl
61
62
63 # Executables targets
64 BIN = 
65 BIN_SRC =
66
67 CPPFLAGS+= \
68         $(KERNEL_CXXFLAGS) \
69         $(GUI_CXXFLAGS) \
70         $(OCC_INCLUDES) \
71         $(VTK_INCLUDES) \
72         $(BOOST_CPPFLAGS) \
73         $(QT_INCLUDES) \
74         $(MED_CXXFLAGS)
75 LDFLAGS+= \
76         $(KERNEL_LDFLAGS) \
77         $(GUI_LDFLAGS) \
78         $(OCC_KERNEL_LIBS) \
79         $(VTK_LIBS) \
80         $(MED_LDFLAGS) \
81         -lSMDS \
82         -lSMESHClient \
83         -lSalomeApp \
84         -lSalomeObject \
85         -lSMESHControls
86
87 LDFLAGSFORBIN += \
88         $(GEOM_LDFLAGS) \
89         $(MED_LDFLAGS) \
90         $(LDFLAGS) \
91         -lqtx \
92         -lsuit \
93         -lstd \
94         -lCAM \
95         -lLightApp \
96         -lObjBrowser \
97         -lSalomePrs \
98         -lSalomeDS \
99         -lTOOLSDS \
100         -lSalomeDSImpl \
101         -lSalomeDSClient \
102         -lSalomeHDFPersist \
103         -lSalomeResourcesManager \
104         -lSalomeLifeCycleCORBA \
105         -lSalomeNotification \
106         -lSalomeContainer \
107         -lSalomeCatalog \
108         -lSalomeSession \
109         -lRegistry \
110         -lNMTTools \
111         -lNMTDS \
112         -lmed_V2_1 \
113         -lMEDWrapper \
114         -lMEDWrapperBase \
115         -lMEDWrapper_V2_1 \
116         -lMEDWrapper_V2_2 \
117         -lPlot2d \
118         -lGLViewer \
119         -lOCCViewer \
120         -lVTKViewer \
121         -lSVTK \
122         -lSOCC \
123         -lSPlot2d \
124         -lSUPERVGraph \
125         -lPyInterp \
126         -lPythonConsole \
127         -lLogWindow \
128         -lLightApp \
129         -lSalomeContainer \
130         -lToolsGUI \
131         -lSalomeNS \
132         -lEvent \
133         -lSalomeGenericObj \
134         -lSALOMELocalTrace \
135         -lwith_loggerTraceCollector \
136         -lSALOMEBasics \
137         -lOpUtil
138
139 @CONCLUDE@