diff options
author | Uwe Stuehler <uwe@cvs.openbsd.org> | 2008-11-24 23:34:43 +0000 |
---|---|---|
committer | Uwe Stuehler <uwe@cvs.openbsd.org> | 2008-11-24 23:34:43 +0000 |
commit | b76ea0f34f6d26d8711d402b22cc4aa21d8bac6c (patch) | |
tree | b8b93e3d3e731a3dd6da39f8b778856970f8b23f /usr.sbin/btd/Makefile | |
parent | b6679679f13b731ba42b47d62e0c1c9c441021fe (diff) |
Bluetooth daemon and contrl utility, one for all, work in progress
Diffstat (limited to 'usr.sbin/btd/Makefile')
-rw-r--r-- | usr.sbin/btd/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/usr.sbin/btd/Makefile b/usr.sbin/btd/Makefile new file mode 100644 index 00000000000..2fabc09fb19 --- /dev/null +++ b/usr.sbin/btd/Makefile @@ -0,0 +1,14 @@ +# $OpenBSD: Makefile,v 1.1 2008/11/24 23:34:41 uwe Exp $ + +PROG= btd +SRCS= bt.c btd.c conf.c control.c db.c devinfo.c \ + hci.c log.c sdp.c util.c +NOMAN= + +LDADD+= -levent -lbluetooth -lsdp -lusbhid +LDFLAGS+= -L/usr/local/lib +CPPFLAGS+= -I${.CURDIR} -I${.CURDIR}/../btctl -I/usr/local/include +COPTS+= -Wall -Werror +DEBUG= -g + +.include <bsd.prog.mk> |