freebsd-dev/tools/regression/lib/libc/locale/Makefile
Tim J. Robbins 10acac81ab Add regression tests for mblen(), mbtowc(), wctomb(), mbstowcs() and
wcstombs(). These tests have already found two libc bugs.
2002-11-09 04:33:02 +00:00

22 lines
306 B
Makefile

# $FreeBSD$
TESTS= test-mbrtowc \
test-wcrtomb \
test-mbsrtowcs \
test-wcsrtombs \
test-btowc \
test-mbrlen \
test-mbtowc \
test-wctomb \
test-mbstowcs \
test-wcstombs \
test-mblen
.PHONY: tests
tests: ${TESTS}
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
.PHONY: clean
clean:
-rm -f ${TESTS}