]> SALOME platform Git repositories - modules/superv.git/blob - src/GraphExecutor/Makefile.in
Salome HOME
9e467babd80adfd9ccf6001b6bfc8cb79b76c970
[modules/superv.git] / src / GraphExecutor / Makefile.in
1 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 #  Copyright (C) 2003-2007  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 #  File      : Makefile.in
24 #  Created   : aug 21 2001
25 #  Author    : , CEA
26 #  Project   : SALOME
27 #==============================================================================
28 # source path
29 #
30 top_srcdir=@top_srcdir@
31 top_builddir=../..
32 srcdir=@srcdir@
33 VPATH=.:@srcdir@:@top_srcdir@/idl
34
35
36 @COMMENCE@
37
38 EXPORT_HEADERS = \
39                 DataFlowExecutor_FiniteStateMachine.hxx \
40                 DataFlowExecutor_InNode.hxx \
41                 DataFlowExecutor_OutNode.hxx \
42                 DataFlowExecutor_DataFlow.hxx \
43                 DataFlowExecutor_DataFlow.lxx
44
45 # Libraries targets
46 LIB = libSalomeSuperVisionExecutor.la
47 LIB_SRC = \
48         DataFlowExecutor_FiniteStateMachine.cxx \
49         DataFlowExecutor_PyDynInvoke.cxx \
50         DataFlowExecutor_DynInvoke.cxx \
51         DataFlowExecutor_InNodeThreads.cxx \
52         DataFlowExecutor_InNode.cxx \
53         DataFlowExecutor_OutNode.cxx \
54         DataFlowExecutor_DataFlow.cxx
55
56 LIB_CLIENT_IDL = SALOME_ModuleCatalog.idl \
57                   SALOME_Component.idl \
58                   SALOMEDS.idl \
59                   SUPERV.idl  \
60                   SALOME_Exception.idl \
61                   SALOME_GenericObj.idl
62
63 # Executables targets
64 #BIN = SuperVisionExecutor_CheckOfUndefined
65 BIN_SRC = 
66 BIN_SERVER_IDL = 
67
68 CPPFLAGS+= $(PYTHON_INCLUDES) $(QT_MT_INCLUDES) $(OCC_INCLUDES) $(KERNEL_CXXFLAGS)
69 CXXFLAGS+= -g -D__x86__ -D__linux__ -ftemplate-depth-42 -Wall \
70         $(KERNEL_CXXFLAGS)
71
72 ifeq ($(OS),REDHAT)
73         CXXFLAGS+= -DREDHAT
74 endif
75
76 LDFLAGS+= -export-dynamic -lSalomeNS -lSalomeLifeCycleCORBA -lSalomeSuperVisionBase -lSalomeSuperVisionEditor -lOpUtil -lSALOMELocalTrace\
77         -lc $(QT_MT_LIBS) $(KERNEL_LDFLAGS)
78 #LIBS += -Xlinker -export-dynamic $(PYTHON_LIBS)
79
80
81 @CONCLUDE@
82
83