13 lines
299 B
Makefile
13 lines
299 B
Makefile
PROG= kcon
|
|
DEVICE= /dev/ttyv0
|
|
CFLAGS+= -I${.CURDIR}/../keycap -DKEYB_DEVICE=\"${DEVICE}\"
|
|
|
|
NOMAN= yes
|
|
|
|
# the -Lfoo could be omitted if libkeycap.a were installed before
|
|
# making those programs here
|
|
|
|
LDADD = -L${.CURDIR}/../keycap -L${.CURDIR}/../keycap/obj -lkeycap
|
|
|
|
.include <bsd.prog.mk>
|