1LOCAL_PATH := $(call my-dir) 2 3# Utils static library for target 4# ======================================================== 5include $(CLEAR_VARS) 6 7LOCAL_C_INCLUDES := \ 8 $(LOCAL_PATH)/include \ 9 $(LOCAL_PATH)/../btcore/include \ 10 $(LOCAL_PATH)/../stack/include \ 11 $(LOCAL_PATH)/../ \ 12 $(bluetooth_C_INCLUDES) 13 14LOCAL_SRC_FILES := \ 15 ./src/bt_utils.c 16 17LOCAL_MODULE := libbt-utils 18LOCAL_MODULE_TAGS := optional 19LOCAL_MODULE_CLASS := STATIC_LIBRARIES 20 21LOCAL_CFLAGS += $(bluetooth_CFLAGS) 22LOCAL_CONLYFLAGS += $(bluetooth_CONLYFLAGS) 23LOCAL_CPPFLAGS += $(bluetooth_CPPFLAGS) 24 25include $(BUILD_STATIC_LIBRARY) 26