summaryrefslogtreecommitdiff
path: root/usr.sbin/btd/Makefile
diff options
context:
space:
mode:
authorUwe Stuehler <uwe@cvs.openbsd.org>2008-11-24 23:34:43 +0000
committerUwe Stuehler <uwe@cvs.openbsd.org>2008-11-24 23:34:43 +0000
commitb76ea0f34f6d26d8711d402b22cc4aa21d8bac6c (patch)
treeb8b93e3d3e731a3dd6da39f8b778856970f8b23f /usr.sbin/btd/Makefile
parentb6679679f13b731ba42b47d62e0c1c9c441021fe (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/Makefile14
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>