opnsense-src/tools/regression/lib/libc/locale/Makefile
2003-10-30 11:51:36 +00:00

25 lines
375 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 \
test-iswctype \
test-towctrans \
test-sgetrune \
test-sputrune
.PHONY: tests
tests: ${TESTS}
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
.PHONY: clean
clean:
-rm -f ${TESTS}