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