Skip to content

Commit 72d9269

Browse files
authored
Makefile: add make evm (ethereum#32029)
1 parent e5da461 commit 72d9269

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Makefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# with Go source code. If you know what GOPATH is then you probably
33
# don't need to bother with make.
44

5-
.PHONY: geth all test lint fmt clean devtools help
5+
.PHONY: geth evm all test lint fmt clean devtools help
66

77
GOBIN = ./build/bin
88
GO ?= latest
@@ -14,6 +14,12 @@ geth:
1414
@echo "Done building."
1515
@echo "Run \"$(GOBIN)/geth\" to launch geth."
1616

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+
1723
#? all: Build all packages and executables.
1824
all:
1925
$(GORUN) build/ci.go install

0 commit comments

Comments
 (0)