mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
12 lines
250 B
Makefile
12 lines
250 B
Makefile
# $FreeBSD$
|
|
|
|
TESTS= test-trimdomain test-trimdomain-nodomain test-flopen test-grp test-pidfile
|
|
CFLAGS+= -g -Wall -Wextra -Werror -lutil
|
|
|
|
.PHONY: tests
|
|
tests: ${TESTS}
|
|
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
-rm -f ${TESTS}
|