blob: 6f12e6e2d16a42e201deb54fe0ad31d5b2248a85 [file] [log] [blame]
micky387e96abca2019-06-11 02:35:20 +02001LOCAL_PATH := $(call my-dir)
2
3# Static library for the target. Used by update_engine_sideload from recovery.
4include $(CLEAR_VARS)
5LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/gpt-utils/inc
6LOCAL_CFLAGS += -Wall -Werror
7LOCAL_SHARED_LIBRARIES += liblog libgptutils libcutils
8LOCAL_HEADER_LIBRARIES := libhardware_headers libsystem_headers
9LOCAL_SRC_FILES := boot_control.cpp
micky38703cfada2019-07-27 07:43:19 +020010LOCAL_MODULE := bootctrl.msmnile
micky387e96abca2019-06-11 02:35:20 +020011include $(BUILD_STATIC_LIBRARY)