-
Notifications
You must be signed in to change notification settings - Fork 36
/
Makefile.am
54 lines (37 loc) · 905 Bytes
/
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
# -*- Makefile -*-
#
# Copyright (c) 2008 Sandia Corporation
#
EXTRA_DIST = \
README.md \
README.affinity \
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
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