2010-04-26 14:07:22 -04:00
|
|
|
SUBDIRS = accessibility data interactive micro-bench tools
|
2010-01-29 04:26:47 -05:00
|
|
|
|
|
|
|
if BUILD_TESTS
|
|
|
|
SUBDIRS += conform
|
|
|
|
endif
|
|
|
|
|
2010-07-07 11:30:31 -04:00
|
|
|
DIST_SUBDIRS = accessibility data conform interactive micro-bench tools
|
2008-04-25 09:37:36 -04:00
|
|
|
|
2008-11-07 14:32:28 -05:00
|
|
|
EXTRA_DIST = README
|
2007-05-04 19:53:49 -04:00
|
|
|
|
2010-01-29 04:26:47 -05:00
|
|
|
if BUILD_TESTS
|
2008-11-07 14:32:28 -05:00
|
|
|
test conform:
|
2010-01-29 04:26:47 -05:00
|
|
|
( cd ./conform && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $$?
|
|
|
|
|
2008-11-07 14:32:28 -05:00
|
|
|
test-report full-report:
|
2010-01-29 04:26:47 -05:00
|
|
|
( 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
|
2008-11-07 14:32:28 -05:00
|
|
|
|
|
|
|
# run make test as part of make check
|
|
|
|
check-local: test
|