1 ifeq ($(BOARD_HAVE_BLUETOOTH_BCM),true) 2 3 LOCAL_PATH:= $(call my-dir) 4 5 # 6 # brcm_patchram_plus.c 7 # 8 9 include $(CLEAR_VARS) 10 11 LOCAL_SRC_FILES := brcm_patchram_plus.c 12 13 LOCAL_MODULE := brcm_patchram_plus 14 15 LOCAL_SHARED_LIBRARIES := libcutils liblog 16 17 LOCAL_C_FLAGS := \ 18 -DANDROID 19 20 include $(BUILD_EXECUTABLE) 21 22 endif 23