1# $FreeBSD: releng/10.2/tools/regression/lib/libc/string/Makefile 264457 2014-04-14 13:30:08Z jmmv $
2
3TESTS=	test-stpncpy test-strerror test-wcscasecmp test-wcsnlen
4
5.PHONY: tests
6tests: ${TESTS}
7	for p in ${TESTS}; do ${.OBJDIR}/$$p; done
8
9.PHONY: clean
10clean:
11	-rm -f ${TESTS}
12