summaryrefslogtreecommitdiff
path: root/tests/Makefile.am
blob: 03df5c7d774836dc50a784ea92a728e65902ddad (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
SUBDIRS = accessibility data interactive micro-bench

if BUILD_TESTS
SUBDIRS += conform
endif

DIST_SUBDIRS = accessibility data conform interactive micro-bench

EXTRA_DIST = README

if BUILD_TESTS
test conform:
	( cd ./conform && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $$?

test-report full-report:
	( cd ./conform && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $$?
else
test conform:
	@true

test-report full-report:
	@true
endif # BUILD_TESTS

.PHONY: test conform test-report full-report

# run make test as part of make check
check-local: test