Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/superv.git] / src / GraphExecutor / Makefile.in
1 #  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
3
4 #  This library is free software; you can redistribute it and/or 
5 #  modify it under the terms of the GNU Lesser General Public 
6 #  License as published by the Free Software Foundation; either 
7 #  version 2.1 of the License. 
8
9 #  This library is distributed in the hope that it will be useful, 
10 #  but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 #  Lesser General Public License for more details. 
13
14 #  You should have received a copy of the GNU Lesser General Public 
15 #  License along with this library; if not, write to the Free Software 
16 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
17
18 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20 #==============================================================================
21 #  File      : Makefile.in
22 #  Created   : aug 21 2001
23 #  Author    : , CEA
24 #  Project   : SALOME
25 #==============================================================================
26
27 # source path
28 top_srcdir=@top_srcdir@
29 top_builddir=../..
30 srcdir=@srcdir@
31 VPATH=.:@srcdir@:@top_srcdir@/idl
32
33
34 @COMMENCE@
35
36 EXPORT_HEADERS = \
37                 DataFlowExecutor_FiniteStateMachine.hxx \
38                 DataFlowExecutor_InNode.hxx \
39                 DataFlowExecutor_OutNode.hxx \
40                 DataFlowExecutor_DataFlow.hxx \
41                 DataFlowExecutor_DataFlow.lxx
42
43 # Libraries targets
44 LIB = libSalomeSuperVisionExecutor.la
45 LIB_SRC = \
46         DataFlowExecutor_FiniteStateMachine.cxx \
47         DataFlowExecutor_PyDynInvoke.cxx \
48         DataFlowExecutor_DynInvoke.cxx \
49         DataFlowExecutor_InNodeThreads.cxx \
50         DataFlowExecutor_InNode.cxx \
51         DataFlowExecutor_OutNode.cxx \
52         DataFlowExecutor_DataFlow.cxx
53
54 LIB_CLIENT_IDL = SALOME_ModuleCatalog.idl \
55                   SALOME_Component.idl \
56                   SALOMEDS.idl \
57                   SUPERV.idl  \
58                   SALOME_Exception.idl \
59                   SALOME_GenericObj.idl
60
61 # Executables targets
62 #BIN = SuperVisionExecutor_CheckOfUndefined
63 BIN_SRC = 
64 BIN_SERVER_IDL = 
65
66 CPPFLAGS+= $(PYTHON_INCLUDES) $(QT_MT_INCLUDES) $(VTK_INCLUDES) $(OGL_INCLUDES) $(OCC_INCLUDES) \
67         $(KERNEL_CXXFLAGS)
68 CXXFLAGS+= -g -D__x86__ -D__linux__ -ftemplate-depth-42 -Wall \
69         $(KERNEL_CXXFLAGS)
70
71 ifeq ($(OS),REDHAT)
72         CXXFLAGS+= -DREDHAT
73 endif
74
75 LDFLAGS+= -export-dynamic -lSalomeNS -lSalomeLifeCycleCORBA -lSalomeSuperVisionBase -lSalomeSuperVisionEditor -lOpUtil -lSALOMELocalTrace\
76         -lc $(QT_MT_LIBS) $(OGL_LIBS) \
77         $(KERNEL_LDFLAGS)
78 #LIBS += -Xlinker -export-dynamic $(PYTHON_LIBS)
79
80
81 @CONCLUDE@
82
83