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