22 lines
299 B
Makefile
22 lines
299 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
bluetooth.c \
|
|
sdp.c \
|
|
hci.c \
|
|
uuid.c \
|
|
|
|
LOCAL_C_INCLUDES:= \
|
|
$(LOCAL_PATH)/bluetooth \
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcutils \
|
|
liblog \
|
|
|
|
LOCAL_MODULE:= libbluetooth
|
|
|
|
LOCAL_CFLAGS+=-O3 -w
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|