blob: f4902e5d8593d9ae538355bf758f98c4d8e087b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $OpenBSD: Makefile,v 1.34 2012/06/20 18:33:59 matthew Exp $
#
# Be sure to change src/distrib/special/kbd/Makefile as well if you add or
# remove architectures on this list!
#
.if ${MACHINE} != "aviion" && ${MACHINE} != "mvme68k" && \
${MACHINE} != "mvme88k"
PROG= kbd
SRCS= main.c kbd_wscons.c
LDADD= -lkvm
DPADD= ${LIBKVM}
.else
NOPROG= Yes
.endif
MAN= kbd.8
MANSUBDIR= alpha amd64 hp300 hppa i386 landisk luna88k macppc \
sgi socppc sparc sparc64 vax zaurus
.include <bsd.prog.mk>
|