blob: f154d9b73ab148b2504d64f5b3db5e03786ce75e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $OpenBSD: Makefile,v 1.3 2008/12/01 19:02:25 todd Exp $
.PATH: ${.CURDIR}/../btd
PROG= btctl
SRCS= bt_subr.c btctl.c conf.c log.c parse.y
MAN= bt.conf.5
LDADD+= -lusbhid
CPPFLAGS+= -I${.CURDIR} -I${.CURDIR}/../btd
COPTS+= -Wall -Werror
DEBUG= -g
.include <bsd.prog.mk>
|