blob: b30319d55bbb74f929a8fcfdae03112a0e199444 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $OpenBSD: Makefile,v 1.5 2000/05/25 21:54:50 deraadt 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>
|