| # Copyright 2010 The Android Open Source Project |
| |
| LOCAL_PATH:= $(call my-dir) |
| |
| libsparse_src_files := \ |
| backed_block.c \ |
| output_file.c \ |
| sparse.c \ |
| sparse_crc32.c \ |
| sparse_err.c \ |
| sparse_read.c |
| |
| |
| include $(CLEAR_VARS) |
| LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include |
| LOCAL_SRC_FILES := $(libsparse_src_files) |
| LOCAL_MODULE := libsparse_host |
| LOCAL_STATIC_LIBRARIES := libz |
| LOCAL_C_INCLUDES := $(LOCAL_PATH)/include |
| LOCAL_CFLAGS := -Werror |
| LOCAL_MODULE_HOST_OS := darwin linux windows |
| include $(BUILD_HOST_STATIC_LIBRARY) |
| |
| |
| include $(CLEAR_VARS) |
| LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include |
| LOCAL_SRC_FILES := $(libsparse_src_files) |
| LOCAL_MODULE := libsparse |
| LOCAL_C_INCLUDES += $(LOCAL_PATH)/include |
| LOCAL_SHARED_LIBRARIES := \ |
| libz |
| LOCAL_CFLAGS := -Werror |
| include $(BUILD_SHARED_LIBRARY) |
| |
| |
| include $(CLEAR_VARS) |
| LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include |
| LOCAL_SRC_FILES := $(libsparse_src_files) |
| LOCAL_MODULE := libsparse_static |
| LOCAL_C_INCLUDES += $(LOCAL_PATH)/include |
| LOCAL_STATIC_LIBRARIES := libz |
| LOCAL_CFLAGS := -Werror |
| include $(BUILD_STATIC_LIBRARY) |
| |
| |
| include $(CLEAR_VARS) |
| LOCAL_SRC_FILES := simg2img.c \ |
| sparse_crc32.c |
| LOCAL_MODULE := simg2img_host |
| # Need a unique module name, but exe should still be called simg2img |
| LOCAL_MODULE_STEM := simg2img |
| LOCAL_STATIC_LIBRARIES := \ |
| libsparse_host \ |
| libz |
| LOCAL_CFLAGS := -Werror |
| include $(BUILD_HOST_EXECUTABLE) |
| |
| |
| include $(CLEAR_VARS) |
| LOCAL_SRC_FILES := simg2img.c \ |
| sparse_crc32.c |
| LOCAL_MODULE := simg2img |
| LOCAL_STATIC_LIBRARIES := \ |
| libsparse_static \ |
| libz |
| LOCAL_CFLAGS := -Werror |
| include $(BUILD_EXECUTABLE) |
| |
| |
| include $(CLEAR_VARS) |
| LOCAL_SRC_FILES := img2simg.c |
| LOCAL_MODULE := img2simg_host |
| # Need a unique module name, but exe should still be called simg2img |
| LOCAL_MODULE_STEM := img2simg |
| LOCAL_STATIC_LIBRARIES := \ |
| libsparse_host \ |
| libz |
| LOCAL_CFLAGS := -Werror |
| include $(BUILD_HOST_EXECUTABLE) |
| |
| |
| include $(CLEAR_VARS) |
| LOCAL_SRC_FILES := img2simg.c |
| LOCAL_MODULE := img2simg |
| LOCAL_STATIC_LIBRARIES := \ |
| libsparse_static \ |
| libz |
| LOCAL_CFLAGS := -Werror |
| include $(BUILD_EXECUTABLE) |
| |
| |
| ifneq ($(HOST_OS),windows) |
| |
| include $(CLEAR_VARS) |
| LOCAL_SRC_FILES := append2simg.c |
| LOCAL_MODULE := append2simg |
| LOCAL_STATIC_LIBRARIES := \ |
| libsparse_host \ |
| libz |
| LOCAL_CFLAGS := -Werror |
| include $(BUILD_HOST_EXECUTABLE) |
| |
| endif |
| |
| include $(CLEAR_VARS) |
| LOCAL_MODULE := simg_dump.py |
| LOCAL_SRC_FILES := simg_dump.py |
| LOCAL_MODULE_CLASS := EXECUTABLES |
| LOCAL_IS_HOST_MODULE := true |
| LOCAL_CFLAGS := -Werror |
| include $(BUILD_PREBUILT) |