1 LOCAL_PATH := $(call my-dir) 2 include $(CLEAR_VARS) 3 4 LOCAL_SRC_FILES := \ 5 mtdutils.c \ 6 mounts.c 7 8 LOCAL_MODULE := libmtdutils 9 10 include $(BUILD_STATIC_LIBRARY) 11 12 include $(CLEAR_VARS) 13 LOCAL_SRC_FILES := flash_image.c 14 LOCAL_MODULE := flash_image 15 LOCAL_MODULE_TAGS := eng 16 LOCAL_STATIC_LIBRARIES := libmtdutils 17 LOCAL_SHARED_LIBRARIES := libcutils liblog libc 18 include $(BUILD_EXECUTABLE) 19