
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
32 lines
657 B
Makefile
32 lines
657 B
Makefile
# $NetBSD: Makefile,v 1.15 2014/06/10 04:28:40 he Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
TESTSDIR= ${TESTSBASE}/rump/rumpkern
|
|
|
|
TESTS_C= t_copy
|
|
TESTS_C+= t_kern
|
|
TESTS_C+= t_lwproc
|
|
TESTS_C+= t_modcmd
|
|
TESTS_C+= t_modlinkset
|
|
TESTS_C+= t_signals
|
|
TESTS_C+= t_threads
|
|
TESTS_C+= t_tsleep
|
|
TESTS_C+= t_vm
|
|
|
|
TESTS_SH= t_sp
|
|
|
|
SUBDIR+= h_client h_server
|
|
|
|
ADD_TO_LD= -lrumpvfs -lrump -lrumpuser -lrump -lpthread
|
|
LDADD.t_modlinkset+= -lukfs -lrumpdev_disk -lrumpdev -lrumpfs_msdos
|
|
LDADD.t_modlinkset+= -lrumpfs_cd9660 ${ADD_TO_LD}
|
|
LDADD+= ${ADD_TO_LD}
|
|
|
|
KERNSPACE != cd ${.CURDIR}/../kernspace && ${PRINTOBJDIR}
|
|
LDADD+= -L${KERNSPACE} -lkernspace
|
|
|
|
WARNS= 4
|
|
|
|
.include <bsd.test.mk>
|