mirror of
https://github.com/opnsense/src.git
synced 2026-04-28 09:37:08 -04:00
17 lines
406 B
Makefile
17 lines
406 B
Makefile
PROG= kcon
|
|
DEVICE= /dev/ttyv0
|
|
CFLAGS+= -I${.CURDIR}/../keycap -DKEYB_DEVICE=\"${DEVICE}\"
|
|
|
|
.if exists(${.OBJDIR}/../keycap)
|
|
LIBDESTDIR= ${.OBJDIR}/../keycap
|
|
.else
|
|
LIBDESTDIR= ${.CURDIR}/../keycap
|
|
.endif
|
|
|
|
# the -Lfoo could be omitted if libkeycap.a were installed before
|
|
# making those programs here
|
|
|
|
DPADD = ${LIBDESTDIR}/libkeycap.a
|
|
LDADD = -L${LIBDESTDIR} -lkeycap
|
|
|
|
.include <bsd.prog.mk>
|