fe86351074
HCIdump reads raw HCI data coming from and going to a Bluetooth device and prints to screen commands, events and data in a human-readable form. Optionally, the dump can be written to a file rather than parsed, and the dump file can be parsed in a subsequent moment. from jcs@, with some tweaks by me requested by uwe@
21 lines
514 B
Plaintext
21 lines
514 B
Plaintext
$OpenBSD: patch-src_Makefile,v 1.1.1.1 2008/11/29 09:54:49 jasper Exp $
|
|
--- src/Makefile.orig Tue Aug 12 11:09:49 2008
|
|
+++ src/Makefile Tue Aug 12 11:17:25 2008
|
|
@@ -0,0 +1,16 @@
|
|
+.PATH: ../parser
|
|
+
|
|
+PROG= hcidump
|
|
+MAN= hcidump.8
|
|
+
|
|
+BINDIR= ${PREFIX}/sbin
|
|
+
|
|
+SRCS= hcidump.c bt_lib.c hci_lib.c \
|
|
+ avctp.c avdtp.c bnep.c bpa.c capi.c cmtp.c csr.c \
|
|
+ ericsson.c hci.c hcrp.c hidp.c l2cap.c lmp.c obex.c \
|
|
+ parser.c ppp.c rfcomm.c sdp.c tcpip.c
|
|
+
|
|
+CFLAGS+= -I..
|
|
+LDADD+= -lbluetooth
|
|
+
|
|
+.include <bsd.prog.mk>
|