1ifneq ($(TARGET_SIMULATOR),true) 2ifeq ($(TARGET_ARCH),arm) 3 4LOCAL_PATH := $(call my-dir) 5include $(CLEAR_VARS) 6 7LOCAL_SRC_FILES := \ 8 mtdutils.c \ 9 mounts.c 10 11LOCAL_MODULE := libmtdutils 12 13include $(BUILD_STATIC_LIBRARY) 14 15include $(CLEAR_VARS) 16LOCAL_SRC_FILES := flash_image.c 17LOCAL_MODULE := flash_image 18LOCAL_MODULE_TAGS := eng 19LOCAL_STATIC_LIBRARIES := libmtdutils 20LOCAL_SHARED_LIBRARIES := libcutils libc 21include $(BUILD_EXECUTABLE) 22 23endif # TARGET_ARCH == arm 24endif # !TARGET_SIMULATOR 25