forked from sandialabs/qthreads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
64 lines (46 loc) · 1.28 KB
/
Makefile.am
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# -*- Makefile -*-
#
# Copyright (c) 2008 Sandia Corporation
#
# The config files here are included because, if I build the distribution
# tarball with AC 2.60 or better, they aren't included by acinclude.m4; but I
# want them distributed in case someone with AC 2.59 wants to run autoreconf
EXTRA_DIST = \
config/ac_prog_cc_c99.m4 \
config/ac_prog_sed.m4 \
config/ac_use_system_extensions.m4 \
README.md \
README.affinity \
README.multinode \
README.performance-monitoring.md \
SCHEDULING \
TODO.md \
autogen.sh
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = qthread.pc
SUBDIRS = man include src test
ACLOCAL_AMFLAGS = -I config
DISTCHECK_CONFIGURE_FLAGS = $(EXTRA_DISTCHECK_OPTIONS)
CONFIGURE_DEPENDENCIES = config/version-gen NEWS
.PHONY: core buildtests tests benchmarks buildextra buildall basictests featuretests stresstests
core:
$(MAKE) -C src
basictests: core
$(MAKE) -C test basictests
featuretests: core
$(MAKE) -C test featuretests
stresstests: core
$(MAKE) -C test stresstests
multinodetests: core
$(MAKE) -C test multinodetests
buildtests: tests
tests:
$(MAKE) -C src
$(MAKE) -C test tests
buildextra: benchmarks
benchmarks:
$(MAKE) -C src
$(MAKE) -C test benchmarks
buildall:
$(MAKE) -C src
$(MAKE) -C test buildall