You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
513 B
23 lines
513 B
LOCAL_PATH:= $(call my-dir) |
|
|
|
include $(CLEAR_VARS) |
|
LOCAL_CLANG := true |
|
ifeq ($(HOST_OS),linux) |
|
LOCAL_SANITIZE := integer |
|
endif |
|
LOCAL_MODULE := fec |
|
LOCAL_SRC_FILES := main.cpp image.cpp |
|
LOCAL_MODULE_TAGS := optional |
|
LOCAL_STATIC_LIBRARIES := \ |
|
libsparse \ |
|
libz \ |
|
libcrypto_utils \ |
|
libcrypto \ |
|
libfec \ |
|
libfec_rs \ |
|
libext4_utils \ |
|
libsquashfs_utils |
|
LOCAL_SHARED_LIBRARIES := libbase |
|
LOCAL_CFLAGS += -Wall -Werror -O3 |
|
LOCAL_C_INCLUDES += external/fec |
|
include $(BUILD_HOST_EXECUTABLE)
|
|
|