NetBSD/sys/rump/librump/rumpdev/Makefile.rumpdev
pooka b2b6f2602e Add a COMMENT describing what each component roughly does.
"make describe" prints the comment.

Requested/inspired by Vincent Schwarzer on rumpkernel-users
2015-10-19 16:16:32 +00:00

28 lines
487 B
Makefile

# $NetBSD: Makefile.rumpdev,v 1.12 2015/10/19 16:16:38 pooka Exp $
#
LIB= rumpdev
COMMENT=Rump kernel device faction
.PATH: ${RUMPTOP}/librump/rumpdev \
${RUMPTOP}/../kern \
${RUMPTOP}/../dev
IOCONFDIR:= ${.PARSEDIR}
IOCONF= MAINBUS.ioconf
SRCS= rump_dev.c autoconf.c
# sys/kern
SRCS+= kern_pmf.c subr_autoconf.c
# sys/dev
SRCS+= dev_verbose.c
CPPFLAGS+= -I${RUMPTOP}/librump/rumpkern
.include "${RUMPTOP}/Makefile.rump"
.include <bsd.lib.mk>
.include <bsd.klinks.mk>