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