Makefile revision 254151
1# $FreeBSD: head/tools/regression/lib/libc/stdio/Makefile 254151 2013-08-09 17:24:23Z jilles $
2
3TESTS=	test-fmemopen test-getdelim test-mkostemp test-open_memstream \
4	test-open_wmemstream test-perror test-print-positional test-printbasic \
5	test-printfloat test-scanfloat 
6CFLAGS+= -lm
7
8.PHONY: tests
9tests: ${TESTS}
10	for p in ${TESTS}; do ${.OBJDIR}/$$p; done
11
12.PHONY: clean
13clean:
14	-rm -f ${TESTS}
15