4c05d95112
Change-Id: Iada6268b0a72ee832113ea397334cc7950a37051
23 lines
436 B
Makefile
23 lines
436 B
Makefile
ifneq ($(TARGET_SIMULATOR),true)
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
mtdutils.c \
|
|
mounts.c
|
|
|
|
LOCAL_MODULE := libmtdutils
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES := flash_image.c
|
|
LOCAL_MODULE := flash_image
|
|
LOCAL_MODULE_TAGS := eng
|
|
LOCAL_STATIC_LIBRARIES := libmtdutils
|
|
LOCAL_SHARED_LIBRARIES := libcutils libc
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
endif # !TARGET_SIMULATOR
|