mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 00:04:14 -05:00
23 lines
367 B
Makefile
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}
|