* From CAF LA.UM.6.3.r4-04300-sdm845.0, modified to build with VNDK current Change-Id: I0ad3c54134a95626521048331b9be9eee04b508d
11 lines
436 B
Makefile
11 lines
436 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
# Static library for the target. Used by update_engine_sideload from recovery.
|
|
include $(CLEAR_VARS)
|
|
LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/gpt-utils/inc
|
|
LOCAL_CFLAGS += -Wall -Werror
|
|
LOCAL_SHARED_LIBRARIES += liblog libgptutils libcutils
|
|
LOCAL_HEADER_LIBRARIES := libhardware_headers libsystem_headers
|
|
LOCAL_SRC_FILES := boot_control.cpp
|
|
LOCAL_MODULE := bootctrl.sdm845
|
|
include $(BUILD_STATIC_LIBRARY)
|