Salome HOME
Removed references to 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         @CAS_CPPFLAGS@ @CAS_CXXFLAGS@ \
58         @LIBXML_INCLUDES@ \
59         -I$(srcdir)/../Batch \
60         -I$(srcdir)/../Basics \
61         -I$(srcdir)/../SALOMELocalTrace \
62         -I$(srcdir)/../NamingService \
63         -I$(srcdir)/../Utils \
64         -I$(srcdir)/../Registry \
65         -I$(srcdir)/../Notification \
66         -I$(srcdir)/../ResourcesManager \
67         -I$(srcdir)/../Container \
68         -I$(top_builddir)/salome_adm/unix \
69         -I$(top_builddir)/idl \
70         @CORBA_CXXFLAGS@ @CORBA_INCLUDES@
71
72 # This local variable defines the list of dependant libraries common to all target in this package.
73 COMMON_LIBS =\
74         ../Registry/libRegistry.la \
75         ../Notification/libSalomeNotification.la \
76         ../Container/libSalomeContainer.la \
77         ../ResourcesManager/libSalomeResourcesManager.la \
78         ../NamingService/libSalomeNS.la \
79         ../Utils/libOpUtil.la \
80         ../SALOMELocalTrace/libSALOMELocalTrace.la \
81         ../Basics/libSALOMEBasics.la \
82         ../Batch/libSalomeBatch.la \
83         $(top_builddir)/idl/libSalomeIDLKernel.la\
84         @MPI_LIBS@ \
85         @CORBA_LIBS@
86         @LIBXML_LIBS@
87
88 #       @PYTHON_LIBS@
89
90 #
91 # ===============================================================
92 # Libraries targets
93 # ===============================================================
94 #
95 lib_LTLIBRARIES = libSalomeLauncher.la
96 libSalomeLauncher_la_SOURCES=\
97         SALOME_Launcher.cxx
98
99 libSalomeLauncher_la_CPPFLAGS =\
100         $(COMMON_CPPFLAGS)
101
102 libSalomeLauncher_la_LDFLAGS  =\
103         -no-undefined -version-info=0:0:0 \
104         @LDEXPDYNFLAGS@
105
106 libSalomeLauncher_la_LIBADD =\
107         $(PYTHON_LIBS) \
108         $(COMMON_LIBS)
109
110
111 #
112 # ===============================================================
113 # Executables targets
114 # ===============================================================
115 #
116 bin_PROGRAMS = SALOME_LauncherServer
117
118 SALOME_LauncherServer_SOURCES =\
119         SALOME_LauncherServer.cxx
120
121 SALOME_LauncherServer_CPPFLAGS=\
122         $(COMMON_CPPFLAGS)
123
124 SALOME_LauncherServer_LDADD =\
125         libSalomeLauncher.la \
126         $(COMMON_LIBS) \
127         ../Basics/libSALOMEBasics.la \
128         ../Batch/libSalomeBatch.la
129
130