mirror of
https://github.com/yggdrasil-network/crispa-android.git
synced 2024-11-08 11:31:02 +00:00
11 lines
472 B
Makefile
11 lines
472 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@005d79c; \
|
|
ANDROID=true ./build;
|
|
mv -f $(GOPATH)/src/github.com/yggdrasil-network/yggdrasil-go/yggdrasil.aar yggdrasil.aar;
|
|
mv -f $(GOPATH)/src/github.com/yggdrasil-network/yggdrasil-go/yggdrasil-sources.jar yggdrasil-sources.jar;
|