mirror of
https://github.com/opnsense/src.git
synced 2026-04-04 08:55:18 -04:00
routines provide write-only stdio FILE objects that store their data in a dynamically allocated buffer. They are a string builder interface somewhat akin to a completely dynamic sbuf. Reviewed by: bde, jilles (earlier versions) MFC after: 1 month
14 lines
304 B
Makefile
14 lines
304 B
Makefile
# $FreeBSD$
|
|
|
|
TESTS= test-fmemopen test-getdelim 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}
|