Home | History | Annotate | Line # | Download | only in libvirtio_ld
Makefile revision 1.1.2.1
      1 #	$NetBSD: Makefile,v 1.1.2.1 2015/12/27 12:10:12 skrll Exp $
      2 #
      3 
      4 RUMPTOP=${TOPRUMP}
      5 
      6 .PATH:	${RUMPTOP}/../dev	\
      7 	${RUMPTOP}/../dev/pci
      8 
      9 LIB=	rumpdev_virtio_ld
     10 COMMENT=VirtIO block device driver
     11 
     12 IOCONF=	VIRTIO_LD.ioconf
     13 
     14 SRCS=	ld_at_virtio.c
     15 SRCS+=	ld_virtio.c
     16 
     17 # XXX: ld.c does not really belong here, but placing it in libdisk
     18 # requires revamping config to be more modular in how CFDRIVER() is
     19 # used.  moving ld up in the component tree later to libdisk won't
     20 # create problems, so just put it here for now.  the excessive
     21 # dependencies of virtio_ld should prevent anyone from want to
     22 # provide ld via this component ...
     23 SRCS+=	ld.c
     24 
     25 CPPFLAGS+= -I${RUMPTOP}/librump/rumpkern -I${RUMPTOP}/librump/rumpvfs
     26    
     27 .include "${RUMPTOP}/Makefile.rump"
     28 .include <bsd.lib.mk>
     29 .include <bsd.klinks.mk>
     30