opnsense-src/tools/regression/lib/libc/stdio/Makefile
Jilles Tjoelker 65ba8dff5f Add mkostemp() and mkostemps().
These are like mkstemp() and mkstemps() but allow passing open(2) flags like
O_CLOEXEC.
2013-08-09 17:24:23 +00:00

14 lines
318 B
Makefile

# $FreeBSD$
TESTS= test-fmemopen 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}