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