2013-05-30 08:22:22 -04:00
|
|
|
SUBDIRS = conform
|
2011-05-05 18:34:38 -04:00
|
|
|
|
2013-05-30 08:22:22 -04:00
|
|
|
if UNIT_TESTS
|
|
|
|
SUBDIRS += unit
|
|
|
|
endif
|
2011-05-05 18:34:38 -04:00
|
|
|
|
2013-05-30 08:22:22 -04:00
|
|
|
SUBDIRS += micro-perf data
|
2011-05-05 18:34:38 -04:00
|
|
|
|
2013-05-30 08:22:22 -04:00
|
|
|
DIST_SUBDIRS = conform unit micro-perf data
|
|
|
|
|
|
|
|
EXTRA_DIST = README test-launcher.sh run-tests.sh
|
|
|
|
|
|
|
|
if UNIT_TESTS
|
|
|
|
test conform:
|
|
|
|
( cd ./conform && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $$?
|
|
|
|
( cd ./unit && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $$?
|
|
|
|
else
|
2011-05-05 18:34:38 -04:00
|
|
|
test conform:
|
|
|
|
( cd ./conform && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $$?
|
2013-05-30 08:22:22 -04:00
|
|
|
endif
|
2011-05-05 18:34:38 -04:00
|
|
|
|
2012-02-23 07:30:51 -05:00
|
|
|
.PHONY: test conform
|
2011-05-05 18:34:38 -04:00
|
|
|
|
|
|
|
# run make test as part of make check
|
|
|
|
check-local: test
|