freebsd-dev/tools/regression/lib/libc/string/Makefile
Mike Barcroft ac3f0d298f Add regression test for strerror()/strerror_r().
Based on:	src/lib/libc/string/strerror.c (rev 1.8)
2002-12-18 16:59:08 +00:00

12 lines
148 B
Makefile

# $FreeBSD$
TESTS= test-strerror
.PHONY: tests
tests: ${TESTS}
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
.PHONY: clean
clean:
-rm -f ${TESTS}