From 1b9e48f4c2b98ea88e43bd493c098dcca822a1d0 Mon Sep 17 00:00:00 2001 From: John Keeping Date: Wed, 2 Dec 2015 10:35:00 +0000 Subject: [PATCH] tools/btattach: install during "make install" btattach provides access to some line disciplines that are supported by hciattach, so allow it to be installed and not reserved for developer use. For now it is still considered an experimental feature. --- Makefile.tools | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile.tools b/Makefile.tools index 034790abb..e79b53ba3 100644 --- a/Makefile.tools +++ b/Makefile.tools @@ -250,10 +250,12 @@ EXTRA_DIST += tools/hid2hci.1 endif if EXPERIMENTAL +bin_PROGRAMS += tools/btattach + noinst_PROGRAMS += tools/bdaddr tools/avinfo tools/avtest \ tools/scotest tools/amptest tools/hwdb \ tools/hcieventmask tools/hcisecfilter \ - tools/btinfo tools/btattach \ + tools/btinfo \ tools/btsnoop tools/btproxy \ tools/btiotest tools/bneptest tools/mcaptest \ tools/cltest tools/oobtest tools/seq2bseq \ @@ -330,7 +332,11 @@ tools_btgatt_server_SOURCES = tools/btgatt-server.c src/uuid-helper.c tools_btgatt_server_LDADD = src/libshared-mainloop.la \ lib/libbluetooth-internal.la +dist_man_MANS += tools/btattach.1 + EXTRA_DIST += tools/bdaddr.1 +else +EXTRA_DIST += tools/btattach.1 endif if READLINE -- 2.47.3