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 LOCAL_CLANG := true 10 11 include $(BUILD_STATIC_LIBRARY) 12 13 include $(CLEAR_VARS) 14 LOCAL_CLANG := true 15 LOCAL_SRC_FILES := flash_image.c 16 LOCAL_MODULE := flash_image 17 LOCAL_MODULE_TAGS := eng 18 LOCAL_STATIC_LIBRARIES := libmtdutils 19 LOCAL_SHARED_LIBRARIES := libcutils liblog libc 20 include $(BUILD_EXECUTABLE) 21