mirror of
https://github.com/opnsense/src.git
synced 2026-06-03 13:58:30 -04:00
11 lines
148 B
Makefile
11 lines
148 B
Makefile
# $FreeBSD$
|
|
|
|
TESTS= test-strerror
|
|
|
|
.PHONY: tests
|
|
tests: ${TESTS}
|
|
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
-rm -f ${TESTS}
|