Salome HOME
Removed includes and libraries of OCC
[modules/kernel.git] / src / Launcher / Makefile.am
1 #  SALOME Container : implementation of container and engine for Kernel
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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22 #
23 #
24 #  File   : Makefile.am
25 #  Author : Guillaume Boulant (CSSI)
26 #  Module : KERNEL
27 #  $Header$
28
29
30 include $(top_srcdir)/salome_adm/unix/make_common_starter.am
31
32 #
33 # ===============================================================
34 # Header to be installed
35 # ===============================================================
36 #
37 # header files  
38 salomeinclude_HEADERS = \
39         SALOME_Launcher.hxx
40
41 # Scripts to be installed
42 dist_salomescript_DATA =
43
44 # These files are executable scripts
45 dist_salomescript_SCRIPTS=
46
47 #
48 # ===============================================================
49 # Local definitions
50 # ===============================================================
51 #
52
53 # This local variable defines the list of CPPFLAGS common to all target in this package.
54 COMMON_CPPFLAGS=\
55         @PYTHON_INCLUDES@ \
56         @MPI_INCLUDES@ \
57         @LIBXML_INCLUDES@ \
58         -I$(srcdir)/../Batch \
59         -I$(srcdir)/../Basics \
60         -I$(srcdir)/../SALOMELocalTrace \
61         -I$(srcdir)/../NamingService \
62         -I$(srcdir)/../Utils \
63         -I$(srcdir)/../Registry \
64         -I$(srcdir)/../Notification \
65         -I$(srcdir)/../ResourcesManager \
66         -I$(srcdir)/../Container \
67         -I$(top_builddir)/salome_adm/unix \
68         -I$(top_builddir)/idl \
69         @CORBA_CXXFLAGS@ @CORBA_INCLUDES@
70
71 # This local variable defines the list of dependant libraries common to all target in this package.
72 COMMON_LIBS =\
73         ../Registry/libRegistry.la \
74         ../Notification/libSalomeNotification.la \
75         ../Container/libSalomeContainer.la \
76         ../ResourcesManager/libSalomeResourcesManager.la \
77         ../NamingService/libSalomeNS.la \
78         ../Utils/libOpUtil.la \
79         ../SALOMELocalTrace/libSALOMELocalTrace.la \
80         ../Basics/libSALOMEBasics.la \
81         ../Batch/libSalomeBatch.la \
82         $(top_builddir)/idl/libSalomeIDLKernel.la\
83         @MPI_LIBS@ \
84         @CORBA_LIBS@
85         @LIBXML_LIBS@
86
87 #       @PYTHON_LIBS@
88
89 #
90 # ===============================================================
91 # Libraries targets
92 # ===============================================================
93 #
94 lib_LTLIBRARIES = libSalomeLauncher.la
95 libSalomeLauncher_la_SOURCES=\
96         SALOME_Launcher.cxx
97
98 libSalomeLauncher_la_CPPFLAGS =\
99         $(COMMON_CPPFLAGS)
100
101 libSalomeLauncher_la_LDFLAGS  =\
102         -no-undefined -version-info=0:0:0 \
103         @LDEXPDYNFLAGS@
104
105 libSalomeLauncher_la_LIBADD =\
106         $(PYTHON_LIBS) \
107         $(COMMON_LIBS)
108
109
110 #
111 # ===============================================================
112 # Executables targets
113 # ===============================================================
114 #
115 bin_PROGRAMS = SALOME_LauncherServer
116
117 SALOME_LauncherServer_SOURCES =\
118         SALOME_LauncherServer.cxx
119
120 SALOME_LauncherServer_CPPFLAGS=\
121         $(COMMON_CPPFLAGS)
122
123 SALOME_LauncherServer_LDADD =\
124         libSalomeLauncher.la \
125         $(COMMON_LIBS) \
126         ../Basics/libSALOMEBasics.la \
127         ../Batch/libSalomeBatch.la
128
129