opnsense-src/tools/regression/lib/libc/stdio/Makefile
2009-02-28 06:39:39 +00:00

12 lines
242 B
Makefile

# $FreeBSD$
TESTS= test-getdelim test-perror test-print-positional test-printbasic test-printfloat test-scanfloat
CFLAGS+= -lm
.PHONY: tests
tests: ${TESTS}
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
.PHONY: clean
clean:
-rm -f ${TESTS}