mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-16 17:03:46 +00:00
bor the default target (#281)
This commit is contained in:
parent
d51abdb487
commit
521b3a7833
1 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
|
@ -13,9 +13,6 @@ GO ?= latest
|
||||||
GORUN = env GO111MODULE=on go run
|
GORUN = env GO111MODULE=on go run
|
||||||
GOPATH = $(shell go env GOPATH)
|
GOPATH = $(shell go env GOPATH)
|
||||||
|
|
||||||
protoc:
|
|
||||||
protoc --go_out=. --go-grpc_out=. ./command/server/proto/*.proto
|
|
||||||
|
|
||||||
bor:
|
bor:
|
||||||
$(GORUN) build/ci.go install ./cmd/geth
|
$(GORUN) build/ci.go install ./cmd/geth
|
||||||
mkdir -p $(GOPATH)/bin/
|
mkdir -p $(GOPATH)/bin/
|
||||||
|
|
@ -28,6 +25,9 @@ bor-all:
|
||||||
cp $(GOBIN)/geth $(GOBIN)/bor
|
cp $(GOBIN)/geth $(GOBIN)/bor
|
||||||
cp $(GOBIN)/* $(GOPATH)/bin/
|
cp $(GOBIN)/* $(GOPATH)/bin/
|
||||||
|
|
||||||
|
protoc:
|
||||||
|
protoc --go_out=. --go-grpc_out=. ./command/server/proto/*.proto
|
||||||
|
|
||||||
geth:
|
geth:
|
||||||
$(GORUN) build/ci.go install ./cmd/geth
|
$(GORUN) build/ci.go install ./cmd/geth
|
||||||
@echo "Done building."
|
@echo "Done building."
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue