summaryrefslogtreecommitdiff
path: root/jni/iodine/src/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'jni/iodine/src/Android.mk')
-rw-r--r--jni/iodine/src/Android.mk22
1 files changed, 22 insertions, 0 deletions
diff --git a/jni/iodine/src/Android.mk b/jni/iodine/src/Android.mk
new file mode 100644
index 0000000..8f7c729
--- /dev/null
+++ b/jni/iodine/src/Android.mk
@@ -0,0 +1,22 @@
+#
+# iodine for Android
+#
+# by Marcel Bokhorst
+# http://blog.bokhorst.biz/5123/computers-en-internet/iodine-for-android/
+#
+# cd iodine-0.6.0-rc1/src
+# make base64u.h base64u.c
+# .../ndk-build NDK_PROJECT_PATH=. APP_BUILD_SCRIPT=Android.mk
+#
+
+LOCAL_PATH:= $(call my-dir)
+
+include $(CLEAR_VARS)
+
+LOCAL_MODULE := iodine
+LOCAL_SRC_FILES := tun.c dns.c read.c encoding.c login.c base32.c base64.c base64u.c base128.c md5.c common.c iodine.c client.c util.c
+LOCAL_CFLAGS := -c -DANDROID -DLINUX -DIFCONFIGPATH=\"/system/bin/\" -Wall
+LOCAL_LDLIBS := -lz
+
+include $(BUILD_EXECUTABLE)
+