1# $FreeBSD$
2
3CFLAGS+=	-I/usr/local/include 
4LDFLAGS+=	-L/usr/local/lib
5LDLIBS=		-ltap
6
7TESTS=	test-stpncpy test-strerror test-wcscasecmp test-wcsnlen
8
9.PHONY: tests
10tests: ${TESTS}
11	for p in ${TESTS}; do ${.OBJDIR}/$$p; done
12
13.PHONY: clean
14clean:
15	-rm -f ${TESTS}
16