mirror of
https://github.com/yggdrasil-network/crispa-android.git
synced 2024-11-08 19:41:01 +00:00
11 lines
458 B
Makefile
11 lines
458 B
Makefile
|
GOPATH=$(shell go env GOPATH)
|
||
|
|
||
|
all:
|
||
|
-go get -u github.com/yggdrasil-network/yggdrasil-go;
|
||
|
-cd $(GOPATH)/src/github.com/yggdrasil-network/yggdrasil-go; \
|
||
|
go get -v -d ./...; \
|
||
|
go get -u github.com/yggdrasil-network/yggdrasil-extras; \
|
||
|
ANDROID=true ./build;
|
||
|
mv $(GOPATH)/src/github.com/yggdrasil-network/yggdrasil-go/yggdrasil.aar yggdrasil.aar;
|
||
|
mv $(GOPATH)/src/github.com/yggdrasil-network/yggdrasil-go/yggdrasil-sources.jar yggdrasil-sources.jar;
|