Files
android_bootable_recovery/gpt/Android.mk
Ethan Yonker 95e8007578 DO NOT MERGE Android 8.0 stuff
Change-Id: I8c8a9734adbf36c33463123844fa6e078934ae34
2017-08-24 21:45:50 -05:00

18 lines
342 B
Makefile

LOCAL_PATH := $(call my-dir)
# Build libgpt_twrp library
include $(CLEAR_VARS)
ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 26; echo $$?),0)
LOCAL_CLANG := false
endif
LOCAL_MODULE := libgpt_twrp
LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES = \
gpt.c \
gptcrc32.c
LOCAL_SHARED_LIBRARIES := libc
include $(BUILD_SHARED_LIBRARY)