We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 57ba182 + 6a00a3a commit 8aa4597Copy full SHA for 8aa4597
Makefile
@@ -13,7 +13,7 @@ GOBIN = build/bin
13
GO ?= latest
14
15
geth:
16
- build/env.sh go install -v $(shell build/flags.sh) ./cmd/geth
+ build/env.sh go build -i -v $(shell build/flags.sh) -o $(GOBIN)/geth ./cmd/geth
17
@echo "Done building."
18
@echo "Run \"$(GOBIN)/geth\" to launch geth."
19
@@ -103,7 +103,9 @@ evm:
103
@echo "Run \"$(GOBIN)/evm to start the evm."
104
105
all:
106
- build/env.sh go install -v $(shell build/flags.sh) ./...
+ for cmd in `ls ./cmd/`; do \
107
+ build/env.sh go build -i -v $(shell build/flags.sh) -o $(GOBIN)/$$cmd ./cmd/$$cmd; \
108
+ done
109
110
test: all
111
build/env.sh go test ./...
0 commit comments