aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmit Pundir <amit.pundir@linaro.org>2012-03-21 14:52:55 +0530
committerAmit Pundir <amit.pundir@linaro.org>2012-03-21 14:52:55 +0530
commitf810fccc3dfcfd893da596a72df7b8e98cb04ca3 (patch)
tree7ec16788c0b609f8e5b019a84d83d5c4af9d70be
parent134e144a182785c5e2412beedc9a759f9ac4851e (diff)
downloadstress-linaro_android.tar.gz
add android build supportlinaro_android
Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
-rw-r--r--Android.mk16
1 files changed, 16 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
new file mode 100644
index 0000000..3fb5023
--- /dev/null
+++ b/Android.mk
@@ -0,0 +1,16 @@
+LOCAL_PATH:= $(call my-dir)
+
+include $(CLEAR_VARS)
+
+LOCAL_CFLAGS:= \
+ -DPACKAGE=\"stress\" \
+ -DVERSION=\"1.0.4\"
+
+LOCAL_SRC_FILES:= \
+ src/stress.c
+
+LOCAL_MODULE_TAGS := optional
+
+LOCAL_MODULE:= stress
+
+include $(BUILD_EXECUTABLE)