]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - tools/regression/lib/libc/string/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / tools / regression / lib / libc / string / Makefile
1 # $FreeBSD$
2
3 CFLAGS+=        -I/usr/local/include 
4 LDFLAGS+=       -L/usr/local/lib
5 LDLIBS=         -ltap
6
7 TESTS=  test-stpncpy test-strerror test-wcscasecmp test-wcsnlen
8
9 .PHONY: tests
10 tests: ${TESTS}
11         for p in ${TESTS}; do ${.OBJDIR}/$$p; done
12
13 .PHONY: clean
14 clean:
15         -rm -f ${TESTS}