Salome HOME
PR: new python function getShortHostName() in Utils_Identity.py, based on socket...
[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 # Specialisation pour OpenPBS
70 EXPORT_HEADERS += \
71         Batch_BatchManager_PBS.hxx \
72         Batch_FactBatchManager_PBS.hxx \
73         Batch_JobInfo_PBS.hxx \
74         Batch_Job_PBS.hxx
75
76
77 # Libraries targets
78
79 LIB = libSalomeBatch.la 
80 LIB_SRC = \
81         Batch_APIInternalFailureException.cxx \
82         Batch_BatchManager.cxx \
83         Batch_BatchManagerCatalog.cxx \
84         Batch_BoolType.cxx \
85         Batch_CharType.cxx \
86         Batch_ConnexionFailureException.cxx \
87         Batch_Couple.cxx \
88         Batch_CoupleType.cxx \
89         Batch_Date.cxx \
90         Batch_DateType.cxx \
91         Batch_Environnement.cxx \
92         Batch_FactBatchManager.cxx \
93         Batch_GenericException.cxx \
94         Batch_GenericType.cxx \
95         Batch_IntType.cxx \
96         Batch_InvalidArgumentException.cxx \
97         Batch_InvalidKeyException.cxx \
98         Batch_Job.cxx \
99         Batch_JobId.cxx \
100         Batch_JobInfo.cxx \
101         Batch_ListIsFullException.cxx \
102         Batch_LongType.cxx \
103         Batch_MapKey.cxx \
104         Batch_NotYetImplementedException.cxx \
105         Batch_Parametre.cxx \
106         Batch_PyVersatile.cxx \
107         Batch_RunTimeException.cxx \
108         Batch_StringType.cxx \
109         Batch_TypeMismatchException.cxx \
110         Batch_Versatile.cxx
111
112 # Specialisation pour OpenPBS
113 LIB_SRC += \
114         Batch_BatchManager_PBS.cxx \
115         Batch_FactBatchManager_PBS.cxx \
116         Batch_JobInfo_PBS.cxx \
117         Batch_Job_PBS.cxx
118
119 LIB_SERVER_IDL = 
120
121
122 CPPFLAGS += $(PYTHON_INCLUDES) $(OPENPBS_INCLUDES)
123
124 CXXFLAGS += $(PYTHON_INCLUDES) $(OPENPBS_INCLUDES)
125
126 LDFLAGS += $(OPENPBS_LIBDIR)
127
128 LIBS += $(OPENPBS_LIBS) -lSALOMELocalTrace
129
130 @CONCLUDE@