blob: ca5e186b69c7620c2c30a7e1ad1a6a8ad468ec0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $OpenBSD: Makefile,v 1.40 2016/05/11 21:52:49 deraadt Exp $
#
# Be sure to change src/distrib/special/kbd/Makefile as well if you add or
# remove architectures on this list!
#
.if ${MACHINE} != "octeon"
PROG= kbd
SRCS= main.c kbd_wscons.c
LDADD= -lkvm
DPADD= ${LIBKVM}
.else
NOPROG= Yes
.endif
MAN= kbd.8
.include <bsd.prog.mk>
|