| commit | e16cb84e2324f05334d18dcf5956f20f44262b62 | [log] [tgz] |
|---|---|---|
| author | The Android Open Source Project <initial-contribution@android.com> | Tue Mar 03 19:32:58 2009 -0800 |
| committer | The Android Open Source Project <initial-contribution@android.com> | Tue Mar 03 19:32:58 2009 -0800 |
| tree | c87defa74181089778bc8e5671e2896d95d4e2b0 | |
| parent | 19ddb4b1680760e2d6863c3003976882ebd9d0fa [diff] [blame] |
auto import from //depot/cupcake/@135843
diff --git a/su/Android.mk b/su/Android.mk new file mode 100644 index 0000000..dd412d5 --- /dev/null +++ b/su/Android.mk
@@ -0,0 +1,15 @@ +LOCAL_PATH:= $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_SRC_FILES:= su.c + +LOCAL_MODULE:= su + +LOCAL_FORCE_STATIC_EXECUTABLE := true + +LOCAL_STATIC_LIBRARIES := libc + +LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES) +LOCAL_MODULE_TAGS := debug tests + +include $(BUILD_EXECUTABLE)