Salome HOME
[Bug PAL7900] g++ 3.3 compatibility
[modules/yacs.git] / src / Batch / Makefile.in
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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 #
22 #
23 #
24 #  File   : Makefile.in
25 #  Author : EDF
26 #  Module : SALOME
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         Batch_APIInternalFailureException.hxx \
39         Batch_BatchManager.hxx \
40         Batch_BatchManagerCatalog.hxx \
41         Batch_BoolType.hxx \
42         Batch_CharType.hxx \
43         Batch_ConnexionFailureException.hxx \
44         Batch_Couple.hxx \
45         Batch_CoupleType.hxx \
46         Batch_Date.hxx \
47         Batch_DateType.hxx \
48         Batch_Environnement.hxx \
49         Batch_FactBatchManager.hxx \
50         Batch_GenericException.hxx \
51         Batch_GenericType.hxx \
52         Batch_IntType.hxx \
53         Batch_InvalidArgumentException.hxx \
54         Batch_InvalidKeyException.hxx \
55         Batch_Job.hxx \
56         Batch_JobId.hxx \
57         Batch_JobInfo.hxx \
58         Batch_ListIsFullException.hxx \
59         Batch_LongType.hxx \
60         Batch_MapKey.hxx \
61         Batch_NotYetImplementedException.hxx \
62         Batch_Parametre.hxx \
63         Batch_PyVersatile.hxx \
64         Batch_RunTimeException.hxx \
65         Batch_StringType.hxx \
66         Batch_TypeMismatchException.hxx \
67         Batch_Versatile.hxx
68
69
70 # Libraries targets
71
72 LIB = libSalomeBatch.la 
73 LIB_SRC = \
74         Batch_APIInternalFailureException.cxx \
75         Batch_BatchManager.cxx \
76         Batch_BatchManagerCatalog.cxx \
77         Batch_BoolType.cxx \
78         Batch_CharType.cxx \
79         Batch_ConnexionFailureException.cxx \
80         Batch_Couple.cxx \
81         Batch_CoupleType.cxx \
82         Batch_Date.cxx \
83         Batch_DateType.cxx \
84         Batch_Environnement.cxx \
85         Batch_FactBatchManager.cxx \
86         Batch_GenericException.cxx \
87         Batch_GenericType.cxx \
88         Batch_IntType.cxx \
89         Batch_InvalidArgumentException.cxx \
90         Batch_InvalidKeyException.cxx \
91         Batch_Job.cxx \
92         Batch_JobId.cxx \
93         Batch_JobInfo.cxx \
94         Batch_ListIsFullException.cxx \
95         Batch_LongType.cxx \
96         Batch_MapKey.cxx \
97         Batch_NotYetImplementedException.cxx \
98         Batch_Parametre.cxx \
99         Batch_PyVersatile.cxx \
100         Batch_RunTimeException.cxx \
101         Batch_StringType.cxx \
102         Batch_TypeMismatchException.cxx \
103         Batch_Versatile.cxx
104
105 LIB_SERVER_IDL = 
106
107
108 CPPFLAGS += $(PYTHON_INCLUDES)
109 CXXFLAGS += $(PYTHON_INCLUDES)
110 LDFLAGS  += 
111 LIBS     += -lSALOMELocalTrace
112
113
114
115 # Specialisation pour OpenPBS
116 ifeq (@WITHOPENPBS@,yes)
117 EXPORT_HEADERS += \
118         Batch_BatchManager_PBS.hxx \
119         Batch_FactBatchManager_PBS.hxx \
120         Batch_JobInfo_PBS.hxx \
121         Batch_Job_PBS.hxx
122
123 LIB_SRC += \
124         Batch_BatchManager_PBS.cxx \
125         Batch_FactBatchManager_PBS.cxx \
126         Batch_JobInfo_PBS.cxx \
127         Batch_Job_PBS.cxx
128
129 CPPFLAGS += $(OPENPBS_INCLUDES)
130 CXXFLAGS += $(OPENPBS_INCLUDES)
131 LDFLAGS  += $(OPENPBS_LIBDIR)
132 LIBS     += $(OPENPBS_LIBS)
133 endif
134
135
136
137
138 # Specialisation pour LSF
139 ifeq (@WITH_LSF@,yes)
140 EXPORT_HEADERS += \
141         Batch_BatchManager_LSF.hxx \
142         Batch_FactBatchManager_LSF.hxx \
143         Batch_JobInfo_LSF.hxx \
144         Batch_Job_LSF.hxx
145
146 LIB_SRC += \
147         Batch_BatchManager_LSF.cxx \
148         Batch_FactBatchManager_LSF.cxx \
149         Batch_JobInfo_LSF.cxx \
150         Batch_Job_LSF.cxx
151
152 CPPFLAGS += $(LSF_INCLUDES)
153 CXXFLAGS += $(LSF_INCLUDES)
154 LDFLAGS  += $(LSF_LIBDIR)
155 LIBS     += $(LSF_LIBS)
156 endif
157
158
159 @CONCLUDE@