1#	$NetBSD: Makefile,v 1.4 2016/01/26 23:12:16 pooka Exp $
2#
3
4RUMPTOP=${TOPRUMP}
5
6.PATH:	${RUMPTOP}/../dev	\
7	${RUMPTOP}/../dev/pci
8
9LIB=	rumpdev_virtio_ld
10COMMENT=VirtIO block device driver
11
12IOCONF=	VIRTIO_LD.ioconf
13
14SRCS=	ld_at_virtio.c
15SRCS+=	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 ...
23SRCS+=	ld.c
24   
25.include "${RUMPTOP}/Makefile.rump"
26.include <bsd.lib.mk>
27.include <bsd.klinks.mk>
28