From 2a7ff4a9ab9ad734d5af13100330f0be7c78df01 Mon Sep 17 00:00:00 2001 From: jdolecek Date: Sat, 19 May 2001 17:53:30 +0000 Subject: [PATCH] Add biosmca.S if I386_INCLUDE_PS2 variable is "yes" (default, overridable) --- sys/arch/i386/stand/lib/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sys/arch/i386/stand/lib/Makefile b/sys/arch/i386/stand/lib/Makefile index 161776df9e4e..86026b7a50ea 100644 --- a/sys/arch/i386/stand/lib/Makefile +++ b/sys/arch/i386/stand/lib/Makefile @@ -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}/../../../../ @@ -9,6 +9,7 @@ MKPROFILE=no I386_INCLUDE_DISK?= yes I386_INCLUDE_DOS?= no I386_INCLUDE_BUS?= no +I386_INCLUDE_PS2?= yes CPPFLAGS= -I$S/lib/libsa ${I386CPPFLAGS} ${I386MISCCPPFLAGS} #CPPFLAGS+= -DDISK_DEBUG @@ -33,6 +34,9 @@ SRCS+= diskbuf.c .if (${I386_INCLUDE_BUS} == "yes") SRCS+= biospci.c bios_pci.S isapnp.c isadma.c .endif +.if (${I386_INCLUDE_PS2} == "yes") +SRCS+= biosmca.S +.endif .include