
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
61 lines
1.3 KiB
Makefile
61 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.45 2015/07/08 01:09:25 matt Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
TESTSDIR= ${TESTSBASE}/lib/libc/gen
|
|
|
|
TESTS_SUBDIRS= execve
|
|
TESTS_SUBDIRS+= posix_spawn
|
|
|
|
TESTS_C+= t_alarm
|
|
TESTS_C+= t_assert
|
|
TESTS_C+= t_basedirname
|
|
TESTS_C+= t_closefrom
|
|
TESTS_C+= t_cpuset
|
|
TESTS_C+= t_dir
|
|
TESTS_C+= t_floatunditf
|
|
TESTS_C+= t_fmtcheck
|
|
TESTS_C+= t_fnmatch
|
|
TESTS_C+= t_fpclassify
|
|
TESTS_C+= t_fpsetmask
|
|
TESTS_C+= t_fpsetround
|
|
TESTS_C+= t_ftok
|
|
TESTS_C+= t_getcwd
|
|
TESTS_C+= t_getgrent
|
|
TESTS_C+= t_glob
|
|
TESTS_C+= t_humanize_number
|
|
TESTS_C+= t_isnan
|
|
TESTS_C+= t_nice
|
|
TESTS_C+= t_pause
|
|
TESTS_C+= t_raise
|
|
TESTS_C+= t_randomid
|
|
TESTS_C+= t_realpath
|
|
TESTS_C+= t_setdomainname
|
|
TESTS_C+= t_sethostname
|
|
TESTS_C+= t_siginfo
|
|
TESTS_C+= t_sleep
|
|
TESTS_C+= t_syslog
|
|
TESTS_C+= t_time
|
|
TESTS_C+= t_ttyname
|
|
TESTS_C+= t_vis
|
|
|
|
.if ${MACHINE_CPU} == "aarch64" || ${MACHINE_CPU} == "arm" \
|
|
|| ${MACHINE_ARCH} == "sparc" || ${MACHINE_ARCH} == "sparc64" \
|
|
|| ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64"
|
|
CPPFLAGS.t_siginfo.c+= -DHAVE_FENV
|
|
LDADD.t_siginfo+= -lm
|
|
DPADD.t_siginfo+= ${LIBM}
|
|
.endif
|
|
|
|
LDADD.t_fpclassify+= -lm
|
|
DPADD.t_fpclassify+= ${LIBM}
|
|
LDADD.t_fpsetround+= -lm
|
|
DPADD.t_fpsetround+= ${LIBM}
|
|
|
|
LDADD.t_nice+= -lpthread
|
|
DPADD.t_nice+= ${LIBPTHREAD}
|
|
LDADD.t_syslog+= -lpthread
|
|
DPADD.t_syslog+= ${LIBPTHREAD}
|
|
|
|
.include <bsd.test.mk>
|