[77] | 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 | |
---|
| 22 | noinst_LTLIBRARIES = libdrmaa_utils.la |
---|
| 23 | COMMON_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 \ |
---|
[81] | 35 | xmalloc.h xmalloc.c \ |
---|
| 36 | jsession.h fsd_jsession.c |
---|
[77] | 37 | # job.h fsd_job.c \ |
---|
| 38 | # session.h fsd_session.c \ |
---|
| 39 | # drmaa_util.c drmaa_util.h |
---|
| 40 | |
---|
| 41 | |
---|
| 42 | |
---|
| 43 | |
---|
| 44 | |
---|
| 45 | libdrmaa_utils_la_SOURCES = $(COMMON_SOURCES) \ |
---|
| 46 | drmaa_base.c drmaa_base.h |
---|
| 47 | |
---|
| 48 | |
---|
| 49 | libdrmaa_utils_la_LDFLAGS = -static |
---|
| 50 | libdrmaa_utils_la_CPPFLAGS = -fPIC |
---|
| 51 | |
---|
| 52 | |
---|
| 53 | include_HEADERS = drmaa2.h |
---|
| 54 | |
---|
| 55 | EXTRA_DIST = conf_tab.y |
---|
| 56 | |
---|
| 57 | if DEVELOPER_MODE |
---|
| 58 | CLEANFILES = $(BUILT_SOURCES) |
---|
| 59 | endif |
---|
| 60 | |
---|
| 61 | |
---|
| 62 | |
---|
| 63 | |
---|