diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2013-01-01 02:24:21 -0800 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2013-01-01 02:24:21 -0800 |
commit | c18b3db8a7251c0f5e532332ba5eaebf6d8b9644 (patch) | |
tree | 61d04c0c9df801e1eaa06868bdcf2ec911441d7d /Makefile.tools | |
parent | b0c402bc695edeefe59ed93a5f30c3a81536dea6 (diff) |
tools: Add skeleton for management interface tester
Diffstat (limited to 'Makefile.tools')
-rw-r--r-- | Makefile.tools | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/Makefile.tools b/Makefile.tools index a19cabccb..1375b9595 100644 --- a/Makefile.tools +++ b/Makefile.tools @@ -26,7 +26,8 @@ monitor_btmon_LDADD = lib/libbluetooth-private.la endif if EXPERIMENTAL -noinst_PROGRAMS += emulator/btvirt emulator/b1ee tools/gap-tester +noinst_PROGRAMS += emulator/btvirt emulator/b1ee \ + tools/mgmt-tester tools/gap-tester emulator_btvirt_SOURCES = emulator/main.c monitor/bt.h \ monitor/mainloop.h monitor/mainloop.c \ @@ -37,6 +38,16 @@ emulator_btvirt_SOURCES = emulator/main.c monitor/bt.h \ emulator_b1ee_SOURCES = emulator/b1ee.c monitor/mainloop.h monitor/mainloop.c +tools_mgmt_tester_SOURCES = tools/mgmt-tester.c \ + monitor/bt.h \ + emulator/btdev.h emulator/btdev.c \ + emulator/bthost.h emulator/bthost.c \ + tools/hciemu.h tools/hciemu.c \ + src/shared/util.h src/shared/util.c \ + src/shared/mgmt.h src/shared/mgmt.c \ + src/shared/tester.h src/shared/tester.c +tools_mgmt_tester_LDADD = @GLIB_LIBS@ + tools_gap_tester_SOURCES = $(gdbus_sources) \ tools/gap-tester.c \ tools/hciemu.h tools/hciemu.c \ |