Fixed bitrot in DPADD in previous commit. The previous commit changed

LDADD to link to a correct copy of libkeycap but didn't change DPADD
to match.
This commit is contained in:
Bruce Evans 2001-07-30 11:38:35 +00:00
parent 07679c2d28
commit 6ab657cc56

View File

@ -2,16 +2,8 @@
PROG= kcon
DEVICE= /dev/ttyv0
CFLAGS+= -I${.CURDIR}/../keycap -DKEYB_DEVICE=\"${DEVICE}\"
DPADD= ${LIBKEYCAP}
LDADD= -lkeycap
.if exists(${.OBJDIR}/../keycap)
LIBKEYCAP= ${.OBJDIR}/../keycap/libkeycap.a
.else
LIBKEYCAP= ${.CURDIR}/../keycap/libkeycap.a
.endif
.include <bsd.prog.mk>