summaryrefslogtreecommitdiff
path: root/sbin/kbd/Makefile
blob: 3069e27a940cf8f51381d02c3ad15b3bb6d4e53b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#	$OpenBSD: Makefile,v 1.38 2015/12/01 07:50:05 deraadt Exp $

#
# Be sure to change src/distrib/special/kbd/Makefile as well if you add or
# remove architectures on this list!
#
.if ${MACHINE} != "hppa64" && \
    ${MACHINE} != "ia64" && ${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>