Makefile revision 1.35
1#	$OpenBSD: Makefile,v 1.35 2014/03/18 22:36:30 miod 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} != "aviion"
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
20MANSUBDIR=	alpha amd64 hppa i386 landisk luna88k macppc \
21		sgi socppc sparc sparc64 vax zaurus
22
23.include <bsd.prog.mk>
24