1# Copyright 2015 The Android Open Source Project 2 3LOCAL_PATH := $(call my-dir) 4include $(CLEAR_VARS) 5 6LOCAL_SRC_FILES := bootctl.cpp 7LOCAL_MODULE := bootctl 8LOCAL_CFLAGS := -Wall -Werror 9LOCAL_SHARED_LIBRARIES := \ 10 libhidlbase \ 11 libhidltransport \ 12 libhwbinder \ 13 libutils \ 14 android.hardware.boot@1.0 \ 15 16include $(BUILD_EXECUTABLE) 17