Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/i386/stand/lib Add biosmca.S if I386_INCLUDE_PS2 va...



details:   https://anonhg.NetBSD.org/src/rev/be2f7c6c720b
branches:  trunk
changeset: 510106:be2f7c6c720b
user:      jdolecek <jdolecek%NetBSD.org@localhost>
date:      Sat May 19 17:53:30 2001 +0000

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

diffstat:

 sys/arch/i386/stand/lib/Makefile |  6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diffs (27 lines):

diff -r 9fe71fef163e -r be2f7c6c720b sys/arch/i386/stand/lib/Makefile
--- a/sys/arch/i386/stand/lib/Makefile  Sat May 19 17:28:33 2001 +0000
+++ b/sys/arch/i386/stand/lib/Makefile  Sat May 19 17:53:30 2001 +0000
@@ -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 @@
 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 @@
 .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 <bsd.lib.mk>
 



Home | Main Index | Thread Index | Old Index