blob: 22363dccb50db42d7d4fd162920e66fde25de765 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $OpenBSD: Makefile,v 1.4 2000/05/19 14:49:44 espie Exp $
.if ${MACHINE} == "i386"
PROG= kcon
DEVICE= /dev/ttyC0
CFLAGS+= -I${.CURDIR}/../keycap -DKEYB_DEVICE=\"${DEVICE}\"
# the -Lfoo could be omitted if libkeycap.a were installed before
# making those programs here
LDADD = -L${.CURDIR}/../keycap -L${.CURDIR}/../keycap/obj -lkeycap
.else
NOPROG=yes
.endif
MAN= kcon.1
MANSUBDIR=i386
.include <bsd.prog.mk>
|