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