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