summaryrefslogtreecommitdiff
path: root/su/Android.mk
blob: fd8df76843cc1425764a4879b7eff35979b0c0ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_CFLAGS := -Wall -Werror

LOCAL_SRC_FILES:= su.cpp

LOCAL_MODULE:= su

LOCAL_HEADER_LIBRARIES := libcutils_headers

LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)

include $(BUILD_EXECUTABLE)