3f26366993
not break it for toastcfh Change-Id: If6d4ced872bc04fc5d02803672c8279c82fe9ea3
21 lines
375 B
Makefile
21 lines
375 B
Makefile
ifneq ($(TARGET_SIMULATOR),true)
|
|
ifeq ($(TARGET_ARCH),arm)
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
ifneq ($BOARD_HAS_LARGE_FILESYSTEM,)
|
|
LOCAL_CFLAGS += -DBOARD_HAS_LARGE_FILESYSTEM
|
|
endif
|
|
|
|
LOCAL_SRC_FILES := \
|
|
mmcutils.c
|
|
|
|
LOCAL_MODULE := libmmcutils
|
|
LOCAL_MODULE_TAGS := eng
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
endif # TARGET_ARCH == arm
|
|
endif # !TARGET_SIMULATOR
|