Makefile revision 1.1
1#	$OpenBSD: Makefile,v 1.1 1996/04/22 20:21:54 hannken Exp $
2#	@(#)Makefile	8.1 (Berkeley) 6/5/93
3
4PROG=	kbd
5MAN=	kbd.8
6
7SRCS=	main.c
8.if ${MACHINE} == "i386"
9SRCS+=	kbd_i386.c
10.else
11SRCS+=	kbd_void.c
12.endif
13
14.include <bsd.prog.mk>
15