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