7aebfa93ac
bthidd(8) now was integrated with vkbd(4) and supports multiple keyboards via vkbd(4)/kbdmux(4). The code was tested with Apple Bluetooth keyboard and SE k700i cell phone (remote control feature). MFC after: 1 month
18 lines
334 B
Makefile
18 lines
334 B
Makefile
# $Id: Makefile,v 1.6 2006/09/07 21:36:55 max Exp $
|
|
# $FreeBSD$
|
|
|
|
PROG= bthidd
|
|
MAN= bthidd.8
|
|
# bthidd.conf.5
|
|
SRCS= bthidd.c client.c hid.c kbd.c lexer.l parser.y server.c \
|
|
session.c
|
|
|
|
CFLAGS+= -I${.CURDIR}
|
|
WARNS?= 6
|
|
DEBUG_FLAGS= -g
|
|
|
|
DPADD= ${LIBBLUETOOTH} ${LIBSDP}
|
|
LDADD= -lbluetooth -lusbhid
|
|
|
|
.include <bsd.prog.mk>
|