1#	$NetBSD: Makefile.rumpdev,v 1.14 2021/06/29 21:03:36 pgoyette Exp $
2#
3
4LIB=	rumpdev
5COMMENT=Rump kernel device faction
6
7.PATH:	${RUMPTOP}/librump/rumpdev				\
8	${RUMPTOP}/../kern					\
9	${RUMPTOP}/../dev
10
11SRCS=	rump_dev.c
12
13# sys/kern
14SRCS+=	kern_pmf.c
15
16# sys/dev
17SRCS+=	dev_verbose.c
18COPTS.dev_verbose.c+= -Wno-error=format-nonliteral
19
20CPPFLAGS+=	-I${RUMPTOP}/librump/rumpkern
21
22.include "${RUMPTOP}/Makefile.rump"
23
24.include <bsd.lib.mk>
25.include <bsd.klinks.mk>
26