1# $NetBSD: Makefile,v 1.3 2015/12/27 06:36:36 pgoyette Exp $ 2# 3 4TESTSDIR= ${TESTSBASE}/rump/modautoload 5 6TESTS_C= t_modautoload 7 8SRCS.t_modautoload+= t_modautoload.c 9 10# Note: we link the rump kernel into the application to make this work 11# on amd64. This is the reason we keep this test in its own 12# subdirectory -- otherwise the LDADD lines would get a little hairy. 13LDFLAGS+= -Wl,-E 14LDADD+= -Wl,--whole-archive ${DESTDIR}/usr/lib/librumpvfs.a \ 15 ${DESTDIR}/usr/lib/librump.a \ 16 -Wl,--no-whole-archive 17LDADD+= -lrumpuser -lpthread 18 19WARNS= 4 20 21# To include a rump version of sysctlbyname() 22 23.PATH: ${NETBSDSRCDIR}/lib/libc/gen 24SRCS.t_modautoload+= sysctlbyname.c 25SRCS.t_modautoload+= sysctlgetmibinfo.c 26CPPFLAGS+= -DRUMP_ACTION 27 28.include <bsd.test.mk> 29