2015-04-18 21:21:45 +00:00
|
|
|
# This Makefile is meant to be used by people that do not usually work
|
|
|
|
# with Go source code. If you know what GOPATH is then you probably
|
|
|
|
# don't need to bother with make.
|
|
|
|
|
2021-10-25 14:49:44 +00:00
|
|
|
.PHONY: geth android ios evm all test clean
|
2015-11-20 14:06:35 +00:00
|
|
|
|
2019-09-11 12:41:22 +00:00
|
|
|
GOBIN = ./build/bin
|
2015-11-20 14:06:35 +00:00
|
|
|
GO ?= latest
|
2023-08-23 15:54:30 +00:00
|
|
|
GORUN = go run
|
2015-11-20 14:06:35 +00:00
|
|
|
|
2015-04-18 21:21:45 +00:00
|
|
|
geth:
|
2020-01-14 12:13:14 +00:00
|
|
|
$(GORUN) build/ci.go install ./cmd/geth
|
2015-04-18 21:21:45 +00:00
|
|
|
@echo "Done building."
|
|
|
|
@echo "Run \"$(GOBIN)/geth\" to launch geth."
|
|
|
|
|
2016-05-25 12:07:57 +00:00
|
|
|
all:
|
2020-01-14 12:13:14 +00:00
|
|
|
$(GORUN) build/ci.go install
|
2016-05-25 12:07:57 +00:00
|
|
|
|
|
|
|
test: all
|
2020-01-14 12:13:14 +00:00
|
|
|
$(GORUN) build/ci.go test
|
2016-05-25 12:07:57 +00:00
|
|
|
|
2018-04-17 22:53:50 +00:00
|
|
|
lint: ## Run linters.
|
2020-01-14 12:13:14 +00:00
|
|
|
$(GORUN) build/ci.go lint
|
2018-04-17 22:53:50 +00:00
|
|
|
|
2016-05-25 12:07:57 +00:00
|
|
|
clean:
|
2023-08-23 15:54:30 +00:00
|
|
|
go clean -cache
|
2016-11-03 12:44:16 +00:00
|
|
|
rm -fr build/_workspace/pkg/ $(GOBIN)/*
|
2016-05-25 12:07:57 +00:00
|
|
|
|
2017-02-26 22:52:10 +00:00
|
|
|
# The devtools target installs tools required for 'go generate'.
|
|
|
|
# You need to put $GOBIN (or $GOPATH/bin) in your PATH to use 'go generate'.
|
|
|
|
|
|
|
|
devtools:
|
2021-05-04 11:01:20 +00:00
|
|
|
env GOBIN= go install golang.org/x/tools/cmd/stringer@latest
|
|
|
|
env GOBIN= go install github.com/fjl/gencodec@latest
|
|
|
|
env GOBIN= go install github.com/golang/protobuf/protoc-gen-go@latest
|
2017-04-06 08:38:21 +00:00
|
|
|
env GOBIN= go install ./cmd/abigen
|
2018-01-08 12:15:57 +00:00
|
|
|
@type "solc" 2> /dev/null || echo 'Please install solc'
|
|
|
|
@type "protoc" 2> /dev/null || echo 'Please install protoc'
|