Add biosmca.S if I386_INCLUDE_PS2 variable is "yes" (default, overridable)

This commit is contained in:
jdolecek 2001-05-19 17:53:30 +00:00
parent a3703d68ef
commit 2a7ff4a9ab
1 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.17 2000/09/24 18:13:54 jdolecek Exp $ # $NetBSD: Makefile,v 1.18 2001/05/19 17:53:30 jdolecek Exp $
S?= ${.CURDIR}/../../../../ S?= ${.CURDIR}/../../../../
@ -9,6 +9,7 @@ MKPROFILE=no
I386_INCLUDE_DISK?= yes I386_INCLUDE_DISK?= yes
I386_INCLUDE_DOS?= no I386_INCLUDE_DOS?= no
I386_INCLUDE_BUS?= no I386_INCLUDE_BUS?= no
I386_INCLUDE_PS2?= yes
CPPFLAGS= -I$S/lib/libsa ${I386CPPFLAGS} ${I386MISCCPPFLAGS} CPPFLAGS= -I$S/lib/libsa ${I386CPPFLAGS} ${I386MISCCPPFLAGS}
#CPPFLAGS+= -DDISK_DEBUG #CPPFLAGS+= -DDISK_DEBUG
@ -33,6 +34,9 @@ SRCS+= diskbuf.c
.if (${I386_INCLUDE_BUS} == "yes") .if (${I386_INCLUDE_BUS} == "yes")
SRCS+= biospci.c bios_pci.S isapnp.c isadma.c SRCS+= biospci.c bios_pci.S isapnp.c isadma.c
.endif .endif
.if (${I386_INCLUDE_PS2} == "yes")
SRCS+= biosmca.S
.endif
.include <bsd.lib.mk> .include <bsd.lib.mk>