summaryrefslogtreecommitdiff
path: root/sbin/kbd/Makefile
blob: 636208ff33dbdb8dec8c02cc843d69f6b37119be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#	$OpenBSD: Makefile,v 1.2 1996/04/29 11:21:08 mickey Exp $
#	@(#)Makefile	8.1 (Berkeley) 6/5/93

PROG=	kbd
MAN=	kbd.8

SRCS=	main.c
CFLAGS+=-I${.CURDIR}
.if ${MACHINE} == "i386"
SRCS+=	kbd_i386.c
.else
SRCS+=	kbd_void.c
.endif

.include <bsd.prog.mk>