source: trunk/ll_drmaa/Makefile.am @ 26

Revision 26, 1.2 KB checked in by mmamonski, 13 years ago (diff)

SupMUC on site fixes: 1. Polling mode 2. Handling missing jobs 3. monitor -> drmaa_monitor 4. force stderr file creation

  • Property svn:keywords set to Id Revision
Line 
1# $Id$
2#
3# PSNC DRMAA for LoadLeveler
4# Copyright (C) 2010 Poznan Supercomputing and Networking Center
5#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10#    http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17#
18
19
20
21lib_LTLIBRARIES = libdrmaa.la
22libdrmaa_la_SOURCES = \
23 drmaa.c \
24 job.c job.h \
25 session.c session.h \
26 util.c util.h
27libdrmaa_la_CPPFLAGS = @LL_INCLUDES@ -I$(top_srcdir)/drmaa_utils/
28if GCC
29libdrmaa_la_CPPFLAGS += -Wno-long-long
30endif
31
32libdrmaa_la_LIBADD = ../drmaa_utils/drmaa_utils/libdrmaa_utils.la @LL_LIBS@
33libdrmaa_la_LDFLAGS = @LL_LDFLAGS@ -version-info @LL_DRMAA_VERSION_INFO@
34
35bin_PROGRAMS = lldrmaa_monitor
36
37lldrmaa_monitor_SOURCES = monitor.c
38
39lldrmaa_monitor_CPPFLAGS = -I$(top_srcdir)/drmaa_utils
40
41dist_sysconf_DATA = ll_drmaa.conf.example
Note: See TracBrowser for help on using the repository browser.