704928a807
This should allow nicer build automation and cross-compilation support. The former --disable-conformance configure switch has been deprecated by the --disable-tests one, which is more encompassing as it disables the whole test suite.
15 lines
358 B
Makefile
15 lines
358 B
Makefile
SUBDIRS = accessibility data conform interactive micro-bench performance
|
|
|
|
EXTRA_DIST = README
|
|
|
|
test conform:
|
|
( cd ./conform && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $$?
|
|
|
|
test-report full-report:
|
|
( cd ./conform && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $$?
|
|
|
|
.PHONY: test conform test-report full-report
|
|
|
|
# run make test as part of make check
|
|
check-local: test
|