source: branches/2.0/drmaa2_utils/drmaa_utils/Makefile.am @ 77

Revision 77, 1.4 KB checked in by mmamonski, 12 years ago (diff)

DRMAA 2.0 utils - first skeleton

Line 
1# $Id: Makefile.am 18 2011-10-12 12:21:55Z mmamonski $
2#
3# PSNC DRMAA 2.0 utilities library
4# Copyright (C) 2012  Poznan Supercomputing and Networking Center
5#
6# This program is free software: you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10#
11# This program 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
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program.  If not, see <http://www.gnu.org/licenses/>.
18#
19
20
21
22noinst_LTLIBRARIES = libdrmaa_utils.la
23COMMON_SOURCES = \
24 common.h \
25 compat.h compat.c \
26 conf_impl.h conf_tab.c conf_tab.h conf.c conf.h \
27 drmaa2.h \
28 environ.h environ.c \
29 exception.c exception.h \
30 util.h fsd_util.c \
31 iter.h iter.c \
32 logging.h logging.c \
33 lookup3.c lookup.h \
34 thread.h thread.c \
35 xmalloc.h xmalloc.c
36# job.h fsd_job.c \
37# session.h fsd_session.c \
38# drmaa_util.c drmaa_util.h
39 
40 
41 
42
43
44libdrmaa_utils_la_SOURCES = $(COMMON_SOURCES) \
45 drmaa_base.c drmaa_base.h
46
47
48libdrmaa_utils_la_LDFLAGS = -static
49libdrmaa_utils_la_CPPFLAGS = -fPIC
50
51
52include_HEADERS = drmaa2.h
53
54EXTRA_DIST = conf_tab.y
55
56if DEVELOPER_MODE
57CLEANFILES = $(BUILT_SOURCES)
58endif
59
60
61
62
Note: See TracBrowser for help on using the repository browser.