Makefile revision 256281
10SN/A# $FreeBSD: stable/10/tools/regression/lib/libc/gen/Makefile 250825 2013-05-20 13:05:51Z jilles $
22362SN/A
30SN/ATESTS=	test-arc4random test-fmtcheck test-fmtmsg test-fnmatch \
40SN/A	test-fpclassify test-ftw test-popen test-posix_spawn test-wordexp
50SN/A
60SN/A.PHONY: tests
72362SN/Atests: ${TESTS}
80SN/A	for p in ${TESTS}; do ${.OBJDIR}/$$p; done
92362SN/A
100SN/A.PHONY: clean
110SN/Aclean:
120SN/A	-rm -f ${TESTS}
130SN/A
140SN/Ash-tests: test-fnmatch
150SN/A	./test-fnmatch -s 1 >../../../bin/sh/builtins/case2.0
160SN/A	./test-fnmatch -s 2 >../../../bin/sh/builtins/case3.0
170SN/A