From 9858dc5d0db4e7a5d002a2e785ef682d738e4f42 Mon Sep 17 00:00:00 2001 From: Daniel Whitenack Date: Fri, 17 Jun 2016 06:55:54 -0500 Subject: [PATCH] Makefile, android build --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..fd821a091 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +GO ?= latest + +statusgo: + go install + @echo "Done installing status go." + @echo "Run \"statusgo\" to view available commands" + +statusgo-android: xgo + xgo --go=$(GO) --targets=android-16/aar ./ + @echo "Android cross compilation done:" + +xgo: + go get github.com/karalabe/xgo