--- android/Android.mk | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/android/Android.mk b/android/Android.mk index 7e97ec8..b3e6a50 100644 --- a/android/Android.mk +++ b/android/Android.mk @@ -282,3 +282,39 @@ LOCAL_MODULE_TAGS := optional LOCAL_MODULE := bluetoothd-snoop include $(BUILD_EXECUTABLE) + +# +# btmgmt +# + +include $(CLEAR_VARS) + +LOCAL_SRC_FILES := \ + ../tools/btmgmt.c \ + ../monitor/mainloop.c \ + ../lib/bluetooth.c \ + ../lib/sdp.c \ + ../src/eir.c \ + ../src/glib-helper.c \ + ../src/shared/io-mainloop.c \ + ../src/shared/mgmt.c \ + ../src/shared/queue.c \ + ../src/shared/util.c \ + +LOCAL_C_INCLUDES := \ + $(call include-path-for, glib) \ + $(call include-path-for, glib)/glib \ + $(LOCAL_PATH)/.. \ + $(LOCAL_PATH)/../src \ + $(LOCAL_PATH)/../lib \ + +LOCAL_SHARED_LIBRARIES := \ + libglib \ + +LOCAL_CFLAGS := $(BLUEZ_COMMON_CFLAGS) + +LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES) +LOCAL_MODULE_TAGS := debug +LOCAL_MODULE := btmgmt + +include $(BUILD_EXECUTABLE) -- 1.8.5.2 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html