aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorAron <homotopycolimit@users.noreply.github.com>2017-06-26 17:19:53 +0800
committerPéter Szilágyi <peterke@gmail.com>2017-06-26 17:19:53 +0800
commit3c7338d6c86cee5769d16c49bba3ef57b722e971 (patch)
tree4f2977a43ea48482ee892383e9bd1d7c273b4e08 /Makefile
parentef8d4711d531de716425c83c3ef56fb6b198108f (diff)
downloadgo-tangerine-3c7338d6c86cee5769d16c49bba3ef57b722e971.tar
go-tangerine-3c7338d6c86cee5769d16c49bba3ef57b722e971.tar.gz
go-tangerine-3c7338d6c86cee5769d16c49bba3ef57b722e971.tar.bz2
go-tangerine-3c7338d6c86cee5769d16c49bba3ef57b722e971.tar.lz
go-tangerine-3c7338d6c86cee5769d16c49bba3ef57b722e971.tar.xz
go-tangerine-3c7338d6c86cee5769d16c49bba3ef57b722e971.tar.zst
go-tangerine-3c7338d6c86cee5769d16c49bba3ef57b722e971.zip
Makefile: add make swarm command (#14698)
* Makefile: add make swarm command * Makefile: minor code formatting polishes
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2b5d84f28..b6e2ddd5e 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@
# with Go source code. If you know what GOPATH is then you probably
# don't need to bother with make.
-.PHONY: geth android ios geth-cross evm all test clean
+.PHONY: geth android ios geth-cross swarm evm all test clean
.PHONY: geth-linux geth-linux-386 geth-linux-amd64 geth-linux-mips64 geth-linux-mips64le
.PHONY: geth-linux-arm geth-linux-arm-5 geth-linux-arm-6 geth-linux-arm-7 geth-linux-arm64
.PHONY: geth-darwin geth-darwin-386 geth-darwin-amd64
@@ -16,6 +16,11 @@ geth:
@echo "Done building."
@echo "Run \"$(GOBIN)/geth\" to launch geth."
+swarm:
+ build/env.sh go run build/ci.go install ./cmd/swarm
+ @echo "Done building."
+ @echo "Run \"$(GOBIN)/swarm\" to launch swarm."
+
evm:
build/env.sh go run build/ci.go install ./cmd/evm
@echo "Done building."