add android build support

Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
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)