opnsense-src/tools/regression/lib/libc/stdio/Makefile
Enji Cooper 41a3b1244b Convert tools/regression/lib/libc/stdio/test-fmemopen into an ATF testcase and
rename as lib/libc/stdio/fmemopen2_test

Sponsored by: EMC / Isilon Storage Division
2014-11-16 19:57:47 +00:00

23 lines
367 B
Makefile

# $FreeBSD$
TESTS= test-fdopen \
test-fopen \
test-freopen \
test-getdelim \
test-mkostemp \
test-open_memstream \
test-open_wmemstream \
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}