aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmit Pundir <amit.pundir@linaro.org>2012-03-21 15:07:08 +0530
committerAmit Pundir <amit.pundir@linaro.org>2012-03-21 15:07:08 +0530
commit1a168610f7ed3802f15842e5f25f2789b67ed99a (patch)
tree3ed35cf0e940af047ea470463d376ba6ce25e27a
parent97eef362f41427f7d5a05dea534e7f2a4fe11df6 (diff)
downloadmemtester-linaro_android.tar.gz
add android build supportlinaro_android
Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
-rw-r--r--Android.mk13
1 files changed, 13 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
new file mode 100644
index 0000000..7b4c279
--- /dev/null
+++ b/Android.mk
@@ -0,0 +1,13 @@
+LOCAL_PATH:= $(call my-dir)
+
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES:= \
+ memtester.c \
+ tests.c
+
+LOCAL_MODULE_TAGS := optional
+
+LOCAL_MODULE:= memtester
+
+include $(BUILD_EXECUTABLE)