2013-03-23 00:23:48 +01:00
|
|
|
# Copyright 2013 The Android Open Source Project
|
|
|
|
|
2014-05-16 00:10:36 +02:00
|
|
|
LOCAL_PATH := $(call my-dir)
|
2013-03-23 00:23:48 +01:00
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
2014-05-16 00:10:36 +02:00
|
|
|
LOCAL_SRC_FILES := reboot.c
|
2013-03-23 00:23:48 +01:00
|
|
|
|
2014-05-16 00:10:36 +02:00
|
|
|
LOCAL_SHARED_LIBRARIES := libcutils
|
2013-03-23 00:23:48 +01:00
|
|
|
|
2014-05-16 00:10:36 +02:00
|
|
|
LOCAL_MODULE := reboot
|
|
|
|
|
|
|
|
LOCAL_CFLAGS := -Werror
|
2013-03-23 00:23:48 +01:00
|
|
|
|
|
|
|
include $(BUILD_EXECUTABLE)
|