aboutsummaryrefslogtreecommitdiff
path: root/tools/regression/lib/libc/locale/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/regression/lib/libc/locale/Makefile')
-rw-r--r--tools/regression/lib/libc/locale/Makefile18
1 files changed, 16 insertions, 2 deletions
diff --git a/tools/regression/lib/libc/locale/Makefile b/tools/regression/lib/libc/locale/Makefile
index d1c883768a30..2924fd94da38 100644
--- a/tools/regression/lib/libc/locale/Makefile
+++ b/tools/regression/lib/libc/locale/Makefile
@@ -1,14 +1,28 @@
# $FreeBSD$
.PHONY: tests
-tests: test-mbrtowc test-wcrtomb
+tests: test-btowc test-mbrlen test-mbrtowc test-mbsrtowcs test-wcsrtombs \
+ test-wcrtomb
${.OBJDIR}/test-mbrtowc
${.OBJDIR}/test-wcrtomb
+ ${.OBJDIR}/test-mbsrtowcs
+ ${.OBJDIR}/test-wcsrtombs
+ ${.OBJDIR}/test-btowc
+ ${.OBJDIR}/test-mbrlen
.PHONY: clean
clean:
- -rm -f test-mbrtowc test-wcrtomb
+ -rm -f test-btowc test-mbrlen test-mbrtowc test-mbsrtowcs \
+ test-wcrtomb test-wcsrtombs
+
+test-btowc: test-btowc.c
+
+test-mbrlen: test-mbrlen.c
test-mbrtowc: test-mbrtowc.c
+test-mbsrtowcs: test-mbsrtowcs.c
+
test-wcrtomb: test-wcrtomb.c
+
+test-wcsrtombs: test-wcsrtombs.c