xref: /netbsd/tests/rump/modautoload/Makefile (revision 984224a2)
1#	$NetBSD: Makefile,v 1.14 2023/04/24 20:55:53 uwe Exp $
2#
3
4.include <bsd.init.mk>
5
6TESTSDIR=	${TESTSBASE}/rump/modautoload
7
8TESTS_C=	t_modautoload
9PAXCTL_FLAGS=	+ma
10
11SRCS.t_modautoload+=	t_modautoload.c
12
13# Note: we link the rump kernel into the application to make this work
14# on amd64.  This is the reason we keep this test in its own
15# subdirectory -- otherwise the LDADD lines would get a little hairy.
16LDFLAGS+=	-Wl,-E
17.if ${MACHINE} == "alpha"
18LDFLAGS+=	-Wl,--no-relax
19.endif
20LDADD+= \
21    -Wl,--whole-archive -Wl,-Bstatic \
22	-lrumpvfs -lrumpvfs_nofifofs -lrump \
23    -Wl,-Bdynamic -Wl,--no-whole-archive
24
25LDADD+=		-lrumpuser -lpthread
26DPADD+=		${LIBRUMPVFS} ${LIBRUMP} ${LIBRUMPUSER}
27
28.if ${RUMP_SANITIZE:Uno} != "no"
29LDADD+=	-fsanitize=${RUMP_SANITIZE}
30.endif
31
32WARNS=	4
33
34# To include a rump version of sysctlbyname()
35
36.PATH:		${NETBSDSRCDIR}/lib/libc/gen
37SRCS.t_modautoload+=		sysctlbyname.c
38SRCS.t_modautoload+=		sysctlgetmibinfo.c
39CPPFLAGS+=	-DRUMP_ACTION
40
41SANITIZER_RENAME_CLASSES+=		t_modautoload
42SANITIZER_RENAME_FILES.t_modautoload+=	${SRCS.t_modautoload}
43SANITIZER_RENAME_SYMBOL.t_modautoload+=	sysctlbyname
44SANITIZER_RENAME_SYMBOL.t_modautoload+=	sysctlgetmibinfo
45
46.include <bsd.test.mk>
47