summaryrefslogtreecommitdiff
path: root/tests/pftest/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pftest/Android.mk')
-rw-r--r--tests/pftest/Android.mk18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/pftest/Android.mk b/tests/pftest/Android.mk
new file mode 100644
index 00000000..bedbd0cb
--- /dev/null
+++ b/tests/pftest/Android.mk
@@ -0,0 +1,18 @@
+# Copyright 2010 The Android Open Source Project
+
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES:= pftest.c.arm
+
+
+LOCAL_SHARED_LIBRARIES := libc
+
+LOCAL_MODULE:= pftest
+
+LOCAL_MODULE_TAGS := optional
+
+## LOCAL_CFLAGS += -fstack-protector-all
+LOCAL_CFLAGS += -fomit-frame-pointer
+
+include $(BUILD_EXECUTABLE)