Makefile revision 1.39
1#	$OpenBSD: Makefile,v 1.39 2016/03/31 01:28:00 jsg Exp $
2
3#
4# Be sure to change src/distrib/special/kbd/Makefile as well if you add or
5# remove architectures on this list!
6#
7.if ${MACHINE} != "hppa64" && ${MACHINE} != "octeon"
8    
9PROG=	kbd
10
11SRCS=	main.c kbd_wscons.c
12LDADD=	-lkvm
13DPADD=	${LIBKVM}
14
15.else
16NOPROG=	Yes
17.endif
18
19MAN=		kbd.8
20
21.include <bsd.prog.mk>
22