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.
14 lines
466 B
14 lines
466 B
# Copyright 2015 The Android Open Source Project |
|
|
|
LOCAL_PATH := $(call my-dir) |
|
include $(CLEAR_VARS) |
|
|
|
LOCAL_SRC_FILES := boot_control_copy.c bootinfo.c |
|
LOCAL_CFLAGS := -Wall -Wno-missing-field-initializers -Wno-unused-parameter |
|
LOCAL_C_INCLUDES := system/core/mkbootimg bootable/recovery |
|
LOCAL_SHARED_LIBRARIES := libbase libcutils |
|
LOCAL_STATIC_LIBRARIES := libfs_mgr |
|
|
|
LOCAL_MODULE_RELATIVE_PATH := hw |
|
LOCAL_MODULE:= bootctrl.default |
|
include $(BUILD_SHARED_LIBRARY)
|
|
|