1 # $NetBSD: Makefile,v 1.4 2016/01/26 23:12:16 pooka 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 .include "${RUMPTOP}/Makefile.rump" 26 .include <bsd.lib.mk> 27 .include <bsd.klinks.mk> 28