Files
android_bootable_recovery/simg2img/Android.mk
bigbiff d58ba18272 AOSP10 TWRP Merge: fix conflicts and update libraries needed
This allows flame to boot TWRP. Still will need to work on
super partition for vendor and system access.

The plan will be to cherry-pick any updates to android-9.0
through gerrit.twrp.me to this branch as a WIP.
2020-03-23 11:18:29 -04:00

15 lines
360 B
Makefile

LOCAL_PATH := system/core/libsparse
include $(CLEAR_VARS)
LOCAL_SRC_FILES := simg2img.cpp \
sparse_crc32.cpp
LOCAL_MODULE := simg2img_twrp
LOCAL_MODULE_STEM := simg2img
LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin
LOCAL_MODULE_TAGS := optional
LOCAL_SHARED_LIBRARIES := \
libsparse \
libz
LOCAL_CFLAGS := -Werror
include $(BUILD_EXECUTABLE)