summaryrefslogtreecommitdiff
path: root/tests/Makefile.am
blob: e5909fd97feb75c64ad9800a547eaee690864dd0 (plain)
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
EXTRA_DIST = README

if BUILD_BENCHMARKS
SUBDIRS_BENCHMARKS = benchmarks
else
SUBDIRS_BENCHMARKS =
endif

if BUILD_TESTS
## SUBDIRS_TESTS = tests testsuite
## FIXME: write tests from scratch
SUBDIRS_TESTS =
if HAVE_CHECK
SUBDIRS_CHECK = check
else
SUBDIRS_CHECK =
endif
else
SUBDIRS_TESTS =
SUBDIRS_CHECK =
endif

if BUILD_EXAMPLES
SUBDIRS_EXAMPLES = examples
else
SUBDIRS_EXAMPLES =
endif

SUBDIRS = \
	$(SUBDIRS_BENCHMARKS) \
	$(SUBDIRS_CHECK) \
	misc		\
	$(SUBDIRS_TESTS) \
	$(SUBDIRS_EXAMPLES)

# These are all the possible subdirs
DIST_SUBDIRS = \
	benchmarks \
	check \
	examples \
	misc