Salome HOME
17aec826f96f1732028256044045f72efb73b7ac
[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_OutPort.hxx \
44                 DataFlowBase_Service.hxx \
45                 DataFlowBase_PortsOfNode.hxx \
46                 DataFlowBase_ComputingNode.hxx \
47                 DataFlowBase_FactoryNode.hxx \
48                 DataFlowBase_InLineNode.hxx \
49                 DataFlowBase_GOTONode.hxx \
50                 DataFlowBase_LoopNode.hxx \
51                 DataFlowBase_EndOfLoopNode.hxx \
52                 DataFlowBase_SwitchNode.hxx \
53                 DataFlowBase_EndOfSwitchNode.hxx \
54                 DataFlowBase_DataNode.hxx \
55                 DataFlowBase_XmlHandler.hxx \
56                 DataFlowBase_Graph.hxx
57
58 # Libraries targets
59 LIB = libSalomeSuperVisionBase.la
60 LIB_SRC = \
61         DataFlowBase_Base.cxx \
62         DataFlowBase_Port.cxx \
63         DataFlowBase_DataPort.cxx \
64         DataFlowBase_InPort.cxx \
65         DataFlowBase_OutPort.cxx \
66         DataFlowBase_Service.cxx \
67         DataFlowBase_PortsOfNode.cxx \
68         DataFlowBase_ComputingNode.cxx \
69         DataFlowBase_FactoryNode.cxx \
70         DataFlowBase_InLineNode.cxx \
71         DataFlowBase_GOTONode.cxx \
72         DataFlowBase_LoopNode.cxx \
73         DataFlowBase_EndOfLoopNode.cxx \
74         DataFlowBase_SwitchNode.cxx \
75         DataFlowBase_EndOfSwitchNode.cxx \
76         DataFlowBase_DataNode.cxx \
77         DataFlowBase_XmlHandler.cxx \
78         DataFlowBase_LoadXml.cxx \
79         DataFlowBase_Graph.cxx 
80
81 LIB_CLIENT_IDL = Logger.idl \
82                  SALOME_ModuleCatalog.idl \
83                  SALOME_Component.idl \
84                  SALOMEDS.idl \
85                  SUPERV.idl \
86                  SALOMEDS_Attributes.idl \
87                  SALOME_Exception.idl
88 # Executables targets
89 BIN = SuperVisionBase_CheckOfUndefined
90 BIN_SRC = 
91 BIN_SERVER_IDL = 
92
93 CPPFLAGS+= $(PYTHON_INCLUDES) $(QT_MT_INCLUDES) $(VTK_INCLUDES) $(OGL_INCLUDES) \
94         -I${KERNEL_ROOT_DIR}/include/salome
95 #CXXFLAGS= -g -D_DEBUG_ -D__x86__ -D__linux__ -ftemplate-depth-42
96 CXXFLAGS= -g -D_DEBUG_ -D__x86__ -D__linux__ -ftemplate-depth-42 -Wall \
97         -I${KERNEL_ROOT_DIR}/include/salome
98 LDFLAGS= -L../../lib/salome $(CORBA_LIBS) -lSalomeNS -lSalomeLifeCycleCORBA -lOpUtil -lSALOMELocalTrace \
99         -lc $(PYTHON_LIBS) $(QT_MT_LIBS) $(OGL_LIBS) \
100         -L${KERNEL_ROOT_DIR}/lib/salome
101 #LDFLAGS= -L../../../lib $(CORBA_LIBS) -lomniORB4 -lomniDynamic4 -lomnithread -lCOS4 -lCOSDynamic4 -lSalomeNS -lSalomeLifeCycleCORBA -lOpUtil -lSalomeLoggerServer -lc $(QT_MT_LIBS)
102
103 @CONCLUDE@