NetBSD/tests/rump/rumpkern/Makefile
christos 0dc8cda9a3 Centralize the base rump libraries into a variable used by all the other
Makefiles so that we can make changes to it centrally as needed and have
less mess. Fixes the sun2 build that needs rumpvfs after librump after
the latest changes.
2020-03-01 18:08:12 +00:00

33 lines
663 B
Makefile

# $NetBSD: Makefile,v 1.19 2020/03/01 18:08:16 christos 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_threadpool
TESTS_C+= t_tsleep
TESTS_C+= t_workqueue
TESTS_C+= t_vm
TESTS_SH= t_sp
SUBDIR+= h_client h_server
LDADD.t_modlinkset+= -lukfs -lrumpdev_disk -lrumpdev -lrumpfs_msdos
LDADD.t_modlinkset+= -lrumpfs_cd9660 ${LIBRUMPBASE}
LDADD+= ${LIBRUMPBASE}
KERNSPACE != cd ${.CURDIR}/../kernspace && ${PRINTOBJDIR}
LDADD+= -L${KERNSPACE} -lkernspace -lrump
WARNS= 4
.include <bsd.test.mk>