forked from pmodels/casper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
32 lines (22 loc) · 701 Bytes
/
Makefile.am
File metadata and controls
32 lines (22 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#
# Copyright (C) 2014. See COPYRIGHT in top-level directory.
#
ACLOCAL_AMFLAGS = -I confdb
AM_CPPFLAGS =
lib_LTLIBRARIES = libcasper.la
include_HEADERS = include/casper.h
libcasper_la_SOURCES =
external_subdirs = @hwlocsrcdir@ @opasrcdir@
external_ldflags = @hwloclibdir@ @opalibdir@
convenience_libs = @hwloclib@ @opalib@
libcasper_la_LDFLAGS = $(external_ldflags)
libcasper_la_LIBADD = $(convenience_libs)
EXTRA_libcasper_la_DEPENDENCIES = $(convenience_libs)
include src/Makefile.mk
EXTRA_DIST = CHANGES COPYRIGHT maint autogen.sh
DIST_SUBDIRS = test ${external_subdirs}
SUBDIRS = ${external_subdirs}
buildtests:
(cd test && make)
check: buildtests
(cd test && make testing MODE=auto)