mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 00:04:14 -05:00
25 lines
379 B
Makefile
25 lines
379 B
Makefile
# $FreeBSD$
|
|
|
|
TESTS= test-mbrtowc \
|
|
test-wcrtomb \
|
|
test-mbsnrtowcs \
|
|
test-mbsrtowcs \
|
|
test-wcsnrtombs \
|
|
test-wcsrtombs \
|
|
test-btowc \
|
|
test-mbrlen \
|
|
test-mbtowc \
|
|
test-wctomb \
|
|
test-mbstowcs \
|
|
test-wcstombs \
|
|
test-mblen \
|
|
test-iswctype \
|
|
test-towctrans
|
|
|
|
.PHONY: tests
|
|
tests: ${TESTS}
|
|
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
-rm -f ${TESTS}
|