Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[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) $(OCC_INCLUDES) $(KERNEL_CXXFLAGS)
67 CXXFLAGS+= -g -D__x86__ -D__linux__ -ftemplate-depth-42 -Wall \
68         $(KERNEL_CXXFLAGS)
69
70 ifeq ($(OS),REDHAT)
71         CXXFLAGS+= -DREDHAT
72 endif
73
74 LDFLAGS+= -export-dynamic -lSalomeNS -lSalomeLifeCycleCORBA -lSalomeSuperVisionBase -lSalomeSuperVisionEditor -lOpUtil -lSALOMELocalTrace\
75         -lc $(QT_MT_LIBS) $(KERNEL_LDFLAGS)
76 #LIBS += -Xlinker -export-dynamic $(PYTHON_LIBS)
77
78
79 @CONCLUDE@
80
81