
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
29 lines
499 B
Makefile
29 lines
499 B
Makefile
# $NetBSD: Makefile,v 1.9 2014/06/23 10:53:20 shm Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
TESTSDIR= ${TESTSBASE}/lib/libc/string
|
|
|
|
TESTS_C+= t_bm
|
|
TESTS_C+= t_memchr
|
|
TESTS_C+= t_memcpy
|
|
TESTS_C+= t_memmem
|
|
TESTS_C+= t_memset
|
|
TESTS_C+= t_popcount
|
|
TESTS_C+= t_strcat
|
|
TESTS_C+= t_strchr
|
|
TESTS_C+= t_strcmp
|
|
TESTS_C+= t_strcpy
|
|
TESTS_C+= t_strcspn
|
|
TESTS_C+= t_strerror
|
|
TESTS_C+= t_stresep
|
|
TESTS_C+= t_strlen
|
|
TESTS_C+= t_strpbrk
|
|
TESTS_C+= t_strrchr
|
|
TESTS_C+= t_strspn
|
|
TESTS_C+= t_swab
|
|
|
|
WARNS= 4
|
|
|
|
.include <bsd.test.mk>
|