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.
1 parent e5da461 commit 72d9269Copy full SHA for 72d9269
Makefile
@@ -2,7 +2,7 @@
2
# with Go source code. If you know what GOPATH is then you probably
3
# don't need to bother with make.
4
5
-.PHONY: geth all test lint fmt clean devtools help
+.PHONY: geth evm all test lint fmt clean devtools help
6
7
GOBIN = ./build/bin
8
GO ?= latest
@@ -14,6 +14,12 @@ geth:
14
@echo "Done building."
15
@echo "Run \"$(GOBIN)/geth\" to launch geth."
16
17
+#? evm: Build evm.
18
+evm:
19
+ $(GORUN) build/ci.go install ./cmd/evm
20
+ @echo "Done building."
21
+ @echo "Run \"$(GOBIN)/evm\" to launch evm."
22
+
23
#? all: Build all packages and executables.
24
all:
25
$(GORUN) build/ci.go install
0 commit comments