1 # Copyright 2015 The Android Open Source Project 2 3 LOCAL_PATH := $(call my-dir) 4 include $(CLEAR_VARS) 5 6 LOCAL_SRC_FILES := bootctl.c 7 LOCAL_SHARED_LIBRARIES := libhardware 8 LOCAL_MODULE := bootctl 9 LOCAL_C_INCLUDES = hardware/libhardware/include 10 LOCAL_CFLAGS := -Wno-unused-parameter 11 12 include $(BUILD_EXECUTABLE) 13