Module Name: src
Committed By: pooka
Date: Wed May 20 11:22:54 UTC 2015
Modified Files:
src/sys/rump/librump/rumpdev: Makefile.rumpdev
Log Message:
build dev_verbose.c
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/rump/librump/rumpdev/Makefile.rumpdev
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/rump/librump/rumpdev/Makefile.rumpdev
diff -u src/sys/rump/librump/rumpdev/Makefile.rumpdev:1.9 src/sys/rump/librump/rumpdev/Makefile.rumpdev:1.10
--- src/sys/rump/librump/rumpdev/Makefile.rumpdev:1.9 Tue Dec 2 01:59:15 2014
+++ src/sys/rump/librump/rumpdev/Makefile.rumpdev Wed May 20 11:22:54 2015
@@ -1,10 +1,11 @@
-# $NetBSD: Makefile.rumpdev,v 1.9 2014/12/02 01:59:15 pooka Exp $
+# $NetBSD: Makefile.rumpdev,v 1.10 2015/05/20 11:22:54 pooka Exp $
#
LIB= rumpdev
.PATH: ${RUMPTOP}/librump/rumpdev \
- ${RUMPTOP}/../kern
+ ${RUMPTOP}/../kern \
+ ${RUMPTOP}/../dev
IOCONFDIR:= ${.PARSEDIR}
IOCONF= MAINBUS.ioconf
@@ -14,6 +15,9 @@ 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 -I${RUMPTOP}/librump/rumpdev/opt
.include "${RUMPTOP}/Makefile.rump"