summaryrefslogtreecommitdiff
path: root/bootctl/Android.mk
diff options
context:
space:
mode:
authorDavid Zeuthen <zeuthen@google.com>2015-08-31 17:55:33 -0400
committerDavid Zeuthen <zeuthen@google.com>2015-08-31 17:55:33 -0400
commit9a854761276a004d1ea3ea597151b62b2e444aef (patch)
treebd0d3c25a3c232ddb8cfaf1db6b72a2e824aa7e6 /bootctl/Android.mk
parent44df7549d622456c3f18e371ec57dbf585a68a1b (diff)
downloadextras-9a854761276a004d1ea3ea597151b62b2e444aef.tar.gz
bootctl: Command-line wrapper for boot_control HAL.
Change-Id: Icd7bfee8fcc04ca113c2e6dc8bcefd614e804bb6
Diffstat (limited to 'bootctl/Android.mk')
-rw-r--r--bootctl/Android.mk12
1 files changed, 12 insertions, 0 deletions
diff --git a/bootctl/Android.mk b/bootctl/Android.mk
new file mode 100644
index 00000000..f0f5a067
--- /dev/null
+++ b/bootctl/Android.mk
@@ -0,0 +1,12 @@
+# Copyright 2015 The Android Open Source Project
+
+LOCAL_PATH := $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := bootctl.c
+LOCAL_SHARED_LIBRARIES := libhardware
+LOCAL_MODULE := bootctl
+LOCAL_C_INCLUDES = hardware/libhardware/include
+LOCAL_CFLAGS := -Wno-unused-parameter
+
+include $(BUILD_EXECUTABLE)