mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 23:26:44 +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
|
||||
GOPATH = $(shell go env GOPATH)
|
||||
|
||||
protoc:
|
||||
protoc --go_out=. --go-grpc_out=. ./command/server/proto/*.proto
|
||||
|
||||
bor:
|
||||
$(GORUN) build/ci.go install ./cmd/geth
|
||||
mkdir -p $(GOPATH)/bin/
|
||||
|
|
@ -28,6 +25,9 @@ bor-all:
|
|||
cp $(GOBIN)/geth $(GOBIN)/bor
|
||||
cp $(GOBIN)/* $(GOPATH)/bin/
|
||||
|
||||
protoc:
|
||||
protoc --go_out=. --go-grpc_out=. ./command/server/proto/*.proto
|
||||
|
||||
geth:
|
||||
$(GORUN) build/ci.go install ./cmd/geth
|
||||
@echo "Done building."
|
||||
|
|
|
|||
Loading…
Reference in a new issue