blob: 07a02f96f4f15418356521cd896c8df0f4b4e681 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $OpenBSD: Makefile,v 1.6 2000/05/27 05:52:12 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
MAN1= kcon.1
MANSUBDIR=/i386
.include <bsd.prog.mk>
|