summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormaja <maja@openbsd.org>2001-06-04 20:53:22 +0000
committermaja <maja@openbsd.org>2001-06-04 20:53:22 +0000
commit9b53bc3f647453673460f116a4b853fe6f263b3b (patch)
tree8992d8fb9320eaaf007b7a3589f9b299118bb25f
parentAdd support for vax lk201 keyboard. Add code to check if new variants or (diff)
downloadwireguard-openbsd-9b53bc3f647453673460f116a4b853fe6f263b3b.tar.xz
wireguard-openbsd-9b53bc3f647453673460f116a4b853fe6f263b3b.zip
Add wscons support for vax. -moj
-rw-r--r--sbin/kbd/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/kbd/Makefile b/sbin/kbd/Makefile
index eea269841ef..59c5a1a4712 100644
--- a/sbin/kbd/Makefile
+++ b/sbin/kbd/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.9 2001/03/08 08:00:16 maja Exp $
+# $OpenBSD: Makefile,v 1.10 2001/06/04 20:53:22 maja Exp $
PROG= kbd
MAN= kbd.8
@@ -8,7 +8,8 @@ CFLAGS+=-I${.CURDIR}
.if (${MACHINE} == "arc")
SRCS+= kbd_i386.c
-.elif (${MACHINE} == "i386") || (${MACHINE} == "powerpc")
+.elif (${MACHINE} == "i386") || (${MACHINE} == "powerpc") || \
+ (${MACHINE} == "vax")
SRCS+= kbd_wscons.c
LDADD= -lkvm
DPADD= ${LIBKVM}