aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 1bd0f9eb3257fd732ccedc36738a6b55c5cd7fdd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# 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.

.PHONY: geth evm mist all test travis-test-with-coverage clean
GOBIN = build/bin

geth:
    build/env.sh go install -v $(shell build/flags.sh) ./cmd/geth
    @echo "Done building."
    @echo "Run \"$(GOBIN)/geth\" to launch geth."

geth-cross: geth-linux geth-darwin geth-windows geth-android
    @echo "Full cross compilation done:"
    @ls -l $(GOBIN)/geth-*

geth-linux: xgo
    build/env.sh $(GOBIN)/xgo --dest=$(GOBIN) --deps=https://gmplib.org/download/gmp/gmp-6.0.0a.tar.bz2 --targets=linux/* -v $(shell build/flags.sh) ./cmd/geth
    @echo "Linux cross compilation done:"
    @ls -l $(GOBIN)/geth-linux-*

geth-darwin: xgo
    build/env.sh $(GOBIN)/xgo --dest=$(GOBIN) --deps=https://gmplib.org/download/gmp/gmp-6.0.0a.tar.bz2 --targets=darwin/* -v $(shell build/flags.sh) ./cmd/geth
    @echo "Darwin cross compilation done:"
    @ls -l $(GOBIN)/geth-darwin-*

geth-windows: xgo
    build/env.sh $(GOBIN)/xgo --dest=$(GOBIN) --deps=https://gmplib.org/download/gmp/gmp-6.0.0a.tar.bz2 --targets=windows/* -v $(shell build/flags.sh) ./cmd/geth
    @echo "Windows cross compilation done:"
    @ls -l $(GOBIN)/geth-windows-*

geth-android: xgo
    build/env.sh $(GOBIN)/xgo --dest=$(GOBIN) --deps=https://gmplib.org/download/gmp/gmp-6.0.0a.tar.bz2 --targets=android-16/*,android-21/* -v $(shell build/flags.sh) ./cmd/geth
    @echo "Android cross compilation done:"
    @ls -l $(GOBIN)/geth-android-*

evm:
    build/env.sh $(GOROOT)/bin/go install -v $(shell build/flags.sh) ./cmd/evm
    @echo "Done building."
    @echo "Run \"$(GOBIN)/evm to start the evm."

mist:
    build/env.sh go install -v $(shell build/flags.sh) ./cmd/mist
    @echo "Done building."
    @echo "Run \"$(GOBIN)/mist --asset_path=cmd/mist/assets\" to launch mist."

all:
    build/env.sh go install -v $(shell build/flags.sh) ./...

test: all
    build/env.sh go test ./...

travis-test-with-coverage: all
    build/env.sh build/test-global-coverage.sh

xgo:
    build/env.sh go get github.com/karalabe/xgo

clean:
    rm -fr build/_workspace/pkg/ Godeps/_workspace/pkg $(GOBIN)/*