blob: 05236eb23db5135c8b12a4fcfa9894ac36b967fa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $FreeBSD$
TESTS= test-trimdomain test-trimdomain-nodomain
CFLAGS+= -g -Wall -lutil
.PHONY: tests
tests: ${TESTS}
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
.PHONY: clean
clean:
-rm -f ${TESTS}
|