mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
11 lines
140 B
Makefile
11 lines
140 B
Makefile
|
|
TESTS= float
|
|
CFLAGS+=-lm
|
|
|
|
.PHONY: tests
|
|
tests: ${TESTS}
|
|
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
-rm -f ${TESTS}
|