Home | History | Annotate | Line # | Download | only in rumpdev
Makefile.rumpdev revision 1.10
      1 #	$NetBSD: Makefile.rumpdev,v 1.10 2015/05/20 11:22:54 pooka Exp $
      2 #
      3 
      4 LIB=	rumpdev
      5 
      6 .PATH:	${RUMPTOP}/librump/rumpdev				\
      7 	${RUMPTOP}/../kern					\
      8 	${RUMPTOP}/../dev
      9 
     10 IOCONFDIR:=	${.PARSEDIR}
     11 IOCONF=		MAINBUS.ioconf
     12 
     13 SRCS=	rump_dev.c autoconf.c
     14 
     15 # sys/kern
     16 SRCS+=	kern_pmf.c subr_autoconf.c
     17 
     18 # sys/dev
     19 SRCS+=	dev_verbose.c
     20 
     21 CPPFLAGS+=	-I${RUMPTOP}/librump/rumpkern -I${RUMPTOP}/librump/rumpdev/opt
     22 
     23 .include "${RUMPTOP}/Makefile.rump"
     24 
     25 .include <bsd.lib.mk>
     26 .include <bsd.klinks.mk>
     27