mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-23 11:18:54 +00:00
13 lines
250 B
Makefile
13 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}
|