Makefile revision 1.2
11.2Spooka# $NetBSD: Makefile,v 1.2 2010/02/12 12:07:12 pooka Exp $ 21.1Spooka# 31.1Spooka# 41.1Spooka# umass. includes scsibus+sd for simplicity due to the umass code 51.1Spooka# needing compile time knowledge of its presence. fixxxme 61.1Spooka# 71.1Spooka 81.1Spooka.PATH: ${.CURDIR}/../../../../dev/usb ${.CURDIR}/../../../../dev/scsipi 91.1Spooka 101.1SpookaLIB= rumpdev_umass 111.2SpookaIOCONFIG= UMASS.ioconf 121.1Spooka 131.2Spooka.if ${MACHINE} == "i386" 141.1SpookaSRCS= umass.c umass_isdata.c umass_quirks.c umass_scsipi.c 151.1SpookaSRCS+= scsipiconf.c scsipi_base.c scsipi_ioctl.c scsi_base.c scsiconf.c 161.1SpookaSRCS+= atapi_base.c atapiconf.c 171.1Spooka 181.1SpookaSRCS+= cd.c sd.c 191.1Spooka 201.1SpookaSRCS+= sd_at_scsibus_at_umass.c 211.2Spooka.else 221.2SpookaSRCS= dummy.c 231.2Spooka.endif 241.1Spooka 251.1SpookaCFLAGS+= -Wno-pointer-sign 261.1SpookaCPPFLAGS+= -I${.CURDIR}/opt -I${RUMPTOP}/librump/rumpvfs 271.1Spooka 281.1Spooka.include <bsd.lib.mk> 291.1Spooka.include <bsd.klinks.mk> 30