Home | History | Annotate | Line # | Download | only in rumpdev
Makefile.rumpdev revision 1.12
      1 #	$NetBSD: Makefile.rumpdev,v 1.12 2015/10/19 16:16:38 pooka 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 IOCONFDIR:=	${.PARSEDIR}
     12 IOCONF=		MAINBUS.ioconf
     13 
     14 SRCS=	rump_dev.c autoconf.c
     15 
     16 # sys/kern
     17 SRCS+=	kern_pmf.c subr_autoconf.c
     18 
     19 # sys/dev
     20 SRCS+=	dev_verbose.c
     21 
     22 CPPFLAGS+=	-I${RUMPTOP}/librump/rumpkern
     23 
     24 .include "${RUMPTOP}/Makefile.rump"
     25 
     26 .include <bsd.lib.mk>
     27 .include <bsd.klinks.mk>
     28