mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-21 11:13:30 +00:00
c6db8143ed
Reduce overlinking
15 lines
302 B
Makefile
15 lines
302 B
Makefile
# $Id: Makefile,v 1.2 2004/02/13 21:44:41 max Exp $
|
|
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../bthidd
|
|
|
|
PROG= bthidcontrol
|
|
MAN= bthidcontrol.8
|
|
SRCS= bthidcontrol.c hid.c lexer.l parser.y sdp.c
|
|
WARNS?= 1
|
|
CFLAGS+= -DBTHIDCONTROL=1 -I${.CURDIR}/../bthidd
|
|
|
|
LIBADD+= bluetooth sdp usbhid
|
|
|
|
.include <bsd.prog.mk>
|