mirror of
https://github.com/opnsense/src.git
synced 2026-02-22 09:21:31 -05:00
11 lines
163 B
Makefile
11 lines
163 B
Makefile
# $FreeBSD$
|
|
|
|
TESTS= test-fpclassify test-wordexp
|
|
|
|
.PHONY: tests
|
|
tests: ${TESTS}
|
|
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
-rm -f ${TESTS}
|