Makefile revision 1.2
11.2Spooka# $NetBSD: Makefile,v 1.2 2015/10/19 16:16:35 pooka Exp $ 21.1Spooka# 31.1Spooka 41.1SpookaRUMPTOP=${TOPRUMP} 51.1Spooka 61.1Spooka.PATH: ${RUMPTOP}/../dev \ 71.1Spooka ${RUMPTOP}/../dev/pci 81.1Spooka 91.1SpookaLIB= rumpdev_virtio_ld 101.2SpookaCOMMENT=VirtIO block device driver 111.2Spooka 121.1SpookaIOCONF= VIRTIO_LD.ioconf 131.1Spooka 141.1SpookaSRCS= ld_at_virtio.c 151.1Spooka 161.1SpookaSRCS+= ld_virtio.c 171.1Spooka 181.1Spooka# XXX: ld.c does not really belong here, but placing it in libdisk 191.1Spooka# requires revamping config to be more modular in how CFDRIVER() is 201.1Spooka# used. moving ld up in the component tree later to libdisk won't 211.1Spooka# create problems, so just put it here for now. the excessive 221.1Spooka# dependencies of virtio_ld should prevent anyone from want to 231.1Spooka# provide ld via this component ... 241.1SpookaSRCS+= ld.c 251.1Spooka 261.1SpookaCPPFLAGS+= -I${RUMPTOP}/librump/rumpkern -I${RUMPTOP}/librump/rumpvfs 271.1Spooka 281.1Spooka.include "${RUMPTOP}/Makefile.rump" 291.1Spooka.include <bsd.lib.mk> 301.1Spooka.include <bsd.klinks.mk> 31