Just replace the simple calls to the library with ad-hoc code. We should later rewrite these with the ATF libraries anyway, which are part of the base system.
12 lines
190 B
Makefile
12 lines
190 B
Makefile
# $FreeBSD$
|
|
|
|
TESTS= test-stpncpy test-strerror test-wcscasecmp test-wcsnlen
|
|
|
|
.PHONY: tests
|
|
tests: ${TESTS}
|
|
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
-rm -f ${TESTS}
|