6490c2ffab
Note: bthidd(8) is still not complete. Need to commit kernel support (a-la Linux /dev/input) to feed HID events into kernel. Also need to write bthidd(8) and bthidd.conf(5) man pages.
15 lines
315 B
Makefile
15 lines
315 B
Makefile
# $Id: Makefile,v 1.2 2004/02/13 21:46:20 max Exp $
|
|
# $FreeBSD$
|
|
|
|
PROG= bthidd
|
|
#MAN= bthidd.8 bthidd.conf.5
|
|
NOMAN= 1
|
|
SRCS= bthidd.c client.c hid.c lexer.l parser.y server.c session.c
|
|
WARNS?= 1
|
|
CFLAGS+= -I${.CURDIR}
|
|
|
|
DPADD= ${LIBBLUETOOTH} ${LIBSDP}
|
|
LDADD= -lbluetooth -lusbhid
|
|
|
|
.include <bsd.prog.mk>
|