From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> --- android/Android.mk | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/android/Android.mk b/android/Android.mk index e7a70d0..09c4579 100644 --- a/android/Android.mk +++ b/android/Android.mk @@ -123,3 +123,37 @@ $(foreach file,$(lib_headers), $(shell ln -sf ../$(file) $(LOCAL_PATH)/../lib/bl LOCAL_MODULE := libbluetooth include $(BUILD_SHARED_LIBRARY) + +# +# hciconfig +# + +include $(CLEAR_VARS) + +LOCAL_SRC_FILES := \ + ../tools/csr.c \ + ../tools/csr_h4.c \ + ../tools/hciconfig.c \ + +LOCAL_C_INCLUDES := \ + $(LOCAL_PATH)/../lib \ + $(LOCAL_PATH)/../src \ + +LOCAL_C_INCLUDES += \ + $(call include-path-for, glib) \ + $(call include-path-for, glib)/glib \ + +LOCAL_SHARED_LIBRARIES := \ + libbluetooth + +# to suppress the "pointer of type 'void *' used in arithmetic" warning +LOCAL_CFLAGS := -Wno-pointer-arith + +# to suppress the "warning: missing initializer near initialization.." warning +LOCAL_CFLAGS += -Wno-missing-field-initializers + +LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES) +LOCAL_MODULE_TAGS := eng +LOCAL_MODULE := hciconfig + +include $(BUILD_EXECUTABLE) -- 1.7.10.4 -- 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