aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-04-20 03:46:41 +0800
committerobscuren <geffobscura@gmail.com>2015-04-20 03:46:41 +0800
commitea11dba00b0f387f4083eef5ab3eeee396953830 (patch)
tree00a4090406d8d25e7424cdc903444cd9d13372eb /Makefile
parent5dd56bb474e9001db6decb75b7abfca99050d844 (diff)
parente6d36fe356109f718ef5420d7a9acb6f754402e4 (diff)
downloadgo-tangerine-ea11dba00b0f387f4083eef5ab3eeee396953830.tar
go-tangerine-ea11dba00b0f387f4083eef5ab3eeee396953830.tar.gz
go-tangerine-ea11dba00b0f387f4083eef5ab3eeee396953830.tar.bz2
go-tangerine-ea11dba00b0f387f4083eef5ab3eeee396953830.tar.lz
go-tangerine-ea11dba00b0f387f4083eef5ab3eeee396953830.tar.xz
go-tangerine-ea11dba00b0f387f4083eef5ab3eeee396953830.tar.zst
go-tangerine-ea11dba00b0f387f4083eef5ab3eeee396953830.zip
Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 000000000..1fdc36f98
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,22 @@
+# This Makefile is meant to be used by people that do not usually work
+# with Go source code. If you know what GOPATH is then you probably
+# don't need to bother with make.
+#
+# Note that there is no way to run the tests or do anything other than
+# building the binaries. This is by design.
+
+.PHONY: geth mist clean
+GOBIN = build/bin
+
+geth:
+ build/env.sh go install -v github.com/ethereum/go-ethereum/cmd/geth
+ @echo "Done building."
+ @echo "Run \"$(GOBIN)/geth\" to launch geth."
+
+mist:
+ build/env.sh go install -v github.com/ethereum/go-ethereum/cmd/mist
+ @echo "Done building."
+ @echo "Run \"$(GOBIN)/mist --asset_path=cmd/mist/assets\" to launch mist."
+
+clean:
+ rm -fr build/_workspace/pkg/ $(GOBIN)/*