1LOCAL_PATH:= $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_SRC_FILES:= \ 5 bluetooth.c \ 6 sdp.c \ 7 hci.c \ 8 uuid.c \ 9 10LOCAL_C_INCLUDES:= \ 11 $(LOCAL_PATH)/bluetooth \ 12 13LOCAL_SHARED_LIBRARIES := \ 14 libcutils \ 15 liblog \ 16 17LOCAL_MODULE:=libbluetooth 18 19LOCAL_CFLAGS+=-O3 20 21include $(BUILD_SHARED_LIBRARY) 22