1# $FreeBSD$
2
3TESTS=	test-trimdomain test-trimdomain-nodomain test-flopen test-grp \
4	test-pidfile test-humanize_number
5CFLAGS+= -g -Wall -Wextra -Werror -lutil
6
7.PHONY: tests
8tests: ${TESTS}
9	for p in ${TESTS}; do ${.OBJDIR}/$$p; done
10
11.PHONY: clean
12clean:
13	-rm -f ${TESTS}
14