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