mirror of
https://github.com/status-im/status-go.git
synced 2025-01-20 11:40:29 +00:00
14 lines
271 B
Makefile
14 lines
271 B
Makefile
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
|