build pci/pcmcia driver LKMs only on i386 and alpha

(this is where I could test, could be more)
This commit is contained in:
drochner 2005-07-23 16:11:18 +00:00
parent 53a6f78e01
commit 20b1effdae
1 changed files with 10 additions and 2 deletions

View File

@ -1,5 +1,13 @@
# $NetBSD: Makefile,v 1.2 2005/07/22 20:14:55 drochner Exp $
# $NetBSD: Makefile,v 1.3 2005/07/23 16:11:18 drochner Exp $
SUBDIR= pci pcmcia vnd
SUBDIR= vnd
.if ${MACHINE} == "i386" || ${MACHINE} == "alpha"
SUBDIR+= pci
.endif
.if ${MACHINE} == "i386" || ${MACHINE} == "alpha"
SUBDIR+= pcmcia
.endif
.include <bsd.subdir.mk>