Salome HOME
e20d680935482a6f76b4521574f688a2f9ea9cff
[modules/superv.git] / src / GraphBase / 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 #  SUPERV GraphBase : contains fondamental classes for Services, Input Ports, Output Ports Links and Nodes.
23 #  File   : Makefile.in
24 #  Author : , CEA
25 #  Module : SUPERV
26 #  $Header: 
27 #
28 top_srcdir=@top_srcdir@
29 top_builddir=../..
30 srcdir=@srcdir@
31 VPATH=.:@srcdir@:@top_srcdir@/idl
32 # KERNEL_CXXFLAGS=@KERNEL_CXXFLAGS@
33
34 @COMMENCE@
35
36 EXPORT_HEADERS = \
37         DataFlowBase_Base.hxx \
38         DataFlowBase_ServicesParameter.hxx \
39         DataFlowBase_Port.hxx \
40         DataFlowBase_DataPort.hxx \
41         DataFlowBase_InPort.hxx \
42         DataFlowBase_InDataStreamPort.hxx \
43         DataFlowBase_OutPort.hxx \
44         DataFlowBase_OutDataStreamPort.hxx \
45         DataFlowBase_Service.hxx \
46         DataFlowBase_PortsOfNode.hxx \
47         DataFlowBase_StreamNode.hxx \
48         DataFlowBase_ComputingNode.hxx \
49         DataFlowBase_FactoryNode.hxx \
50         DataFlowBase_InLineNode.hxx \
51         DataFlowBase_GOTONode.hxx \
52         DataFlowBase_LoopNode.hxx \
53         DataFlowBase_EndOfLoopNode.hxx \
54         DataFlowBase_SwitchNode.hxx \
55         DataFlowBase_EndOfSwitchNode.hxx \
56         DataFlowBase_DataNode.hxx \
57         DataFlowBase_XmlHandler.hxx \
58         DataFlowBase_Graph.hxx \
59         DataFlowBase_StreamGraph.hxx
60
61 # Libraries targets
62 LIB = libSalomeSuperVisionBase.la
63 LIB_SRC = \
64         DataFlowBase_Base.cxx \
65         DataFlowBase_Port.cxx \
66         DataFlowBase_DataPort.cxx \
67         DataFlowBase_InPort.cxx \
68         DataFlowBase_InDataStreamPort.cxx \
69         DataFlowBase_OutPort.cxx \
70         DataFlowBase_OutDataStreamPort.cxx \
71         DataFlowBase_Service.cxx \
72         DataFlowBase_PortsOfNode.cxx \
73         DataFlowBase_StreamNode.cxx \
74         DataFlowBase_ComputingNode.cxx \
75         DataFlowBase_FactoryNode.cxx \
76         DataFlowBase_InLineNode.cxx \
77         DataFlowBase_GOTONode.cxx \
78         DataFlowBase_LoopNode.cxx \
79         DataFlowBase_EndOfLoopNode.cxx \
80         DataFlowBase_SwitchNode.cxx \
81         DataFlowBase_EndOfSwitchNode.cxx \
82         DataFlowBase_DataNode.cxx \
83         DataFlowBase_XmlHandler.cxx \
84         DataFlowBase_LoadXml.cxx \
85         DataFlowBase_Graph.cxx \
86         DataFlowBase_StreamGraph.cxx
87
88 LIB_CLIENT_IDL = Logger.idl \
89         SALOME_ModuleCatalog.idl \
90         SALOME_Component.idl \
91         SALOMEDS.idl \
92         SUPERV.idl \
93         SALOMEDS_Attributes.idl \
94         SALOME_Exception.idl \
95         SALOME_GenericObj.idl
96 # Executables targets
97 BIN = SuperVisionBase_CheckOfUndefined
98 BIN_SRC = 
99 BIN_CLIENT_IDL = SALOME_Component.idl
100
101 CPPFLAGS+= $(PYTHON_INCLUDES) $(QT_MT_INCLUDES) $(KERNEL_CXXFLAGS)
102 CXXFLAGS+= -g -D__x86__ -D__linux__ -ftemplate-depth-42 -Wall \
103         $(KERNEL_CXXFLAGS)
104
105 ifeq ($(OS),REDHAT)
106         CXXFLAGS+= -DREDHAT
107 endif
108
109 LDFLAGS+= $(SUPERV_LDFLAGS) $(CORBA_LIBS) -lSalomeNS -lSalomeLifeCycleCORBA -lOpUtil -lSALOMELocalTrace \
110         -lc $(PYTHON_LIBS) $(QT_MT_LIBS) $(KERNEL_LDFLAGS)
111 LDFLAGSFORBIN= $(LDFLAGS) -lSalomeContainer -lSalomeResourcesManager -lRegistry -lSalomeNotification -lSALOMEBasics -lSalomeSuperVisionBase -lSalomeIDLKernel
112
113 //LIBS += -Xlinker -export-dynamic $(PYTHON_LIBS)
114
115 @CONCLUDE@