mirror of
https://github.com/opnsense/src.git
synced 2026-04-12 04:46:39 -04:00
14 lines
318 B
Makefile
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}
|