github.com/puppeth/go-ethereum@v0.8.6-0.20171014130046-e9295163aa25/Makefile (about)

     1  # This Makefile is meant to be used by people that do not usually work
     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 android ios geth-cross swarm evm all test clean
     6  .PHONY: geth-linux geth-linux-386 geth-linux-amd64 geth-linux-mips64 geth-linux-mips64le
     7  .PHONY: geth-linux-arm geth-linux-arm-5 geth-linux-arm-6 geth-linux-arm-7 geth-linux-arm64
     8  .PHONY: geth-darwin geth-darwin-386 geth-darwin-amd64
     9  .PHONY: geth-windows geth-windows-386 geth-windows-amd64
    10  
    11  GOBIN = $(shell pwd)/build/bin
    12  GO ?= latest
    13  
    14  geth:
    15  	build/env.sh go run build/ci.go install ./cmd/geth
    16  	@echo "Done building."
    17  	@echo "Run \"$(GOBIN)/geth\" to launch geth."
    18  
    19  swarm:
    20  	build/env.sh go run build/ci.go install ./cmd/swarm
    21  	@echo "Done building."
    22  	@echo "Run \"$(GOBIN)/swarm\" to launch swarm."
    23  
    24  all:
    25  	build/env.sh go run build/ci.go install
    26  
    27  android:
    28  	build/env.sh go run build/ci.go aar --local
    29  	@echo "Done building."
    30  	@echo "Import \"$(GOBIN)/geth.aar\" to use the library."
    31  
    32  ios:
    33  	build/env.sh go run build/ci.go xcode --local
    34  	@echo "Done building."
    35  	@echo "Import \"$(GOBIN)/Geth.framework\" to use the library."
    36  
    37  test: all
    38  	build/env.sh go run build/ci.go test
    39  
    40  clean:
    41  	rm -fr build/_workspace/pkg/ $(GOBIN)/*
    42  
    43  # The devtools target installs tools required for 'go generate'.
    44  # You need to put $GOBIN (or $GOPATH/bin) in your PATH to use 'go generate'.
    45  
    46  devtools:
    47  	env GOBIN= go get -u golang.org/x/tools/cmd/stringer
    48  	env GOBIN= go get -u github.com/jteeuwen/go-bindata/go-bindata
    49  	env GOBIN= go get -u github.com/fjl/gencodec
    50  	env GOBIN= go install ./cmd/abigen
    51  
    52  # Cross Compilation Targets (xgo)
    53  
    54  geth-cross: geth-linux geth-darwin geth-windows geth-android geth-ios
    55  	@echo "Full cross compilation done:"
    56  	@ls -ld $(GOBIN)/geth-*
    57  
    58  geth-linux: geth-linux-386 geth-linux-amd64 geth-linux-arm geth-linux-mips64 geth-linux-mips64le
    59  	@echo "Linux cross compilation done:"
    60  	@ls -ld $(GOBIN)/geth-linux-*
    61  
    62  geth-linux-386:
    63  	build/env.sh go run build/ci.go xgo -- --go=$(GO) --targets=linux/386 -v ./cmd/geth
    64  	@echo "Linux 386 cross compilation done:"
    65  	@ls -ld $(GOBIN)/geth-linux-* | grep 386
    66  
    67  geth-linux-amd64:
    68  	build/env.sh go run build/ci.go xgo -- --go=$(GO) --targets=linux/amd64 -v ./cmd/geth
    69  	@echo "Linux amd64 cross compilation done:"
    70  	@ls -ld $(GOBIN)/geth-linux-* | grep amd64
    71  
    72  geth-linux-arm: geth-linux-arm-5 geth-linux-arm-6 geth-linux-arm-7 geth-linux-arm64
    73  	@echo "Linux ARM cross compilation done:"
    74  	@ls -ld $(GOBIN)/geth-linux-* | grep arm
    75  
    76  geth-linux-arm-5:
    77  	build/env.sh go run build/ci.go xgo -- --go=$(GO) --targets=linux/arm-5 -v ./cmd/geth
    78  	@echo "Linux ARMv5 cross compilation done:"
    79  	@ls -ld $(GOBIN)/geth-linux-* | grep arm-5
    80  
    81  geth-linux-arm-6:
    82  	build/env.sh go run build/ci.go xgo -- --go=$(GO) --targets=linux/arm-6 -v ./cmd/geth
    83  	@echo "Linux ARMv6 cross compilation done:"
    84  	@ls -ld $(GOBIN)/geth-linux-* | grep arm-6
    85  
    86  geth-linux-arm-7:
    87  	build/env.sh go run build/ci.go xgo -- --go=$(GO) --targets=linux/arm-7 -v ./cmd/geth
    88  	@echo "Linux ARMv7 cross compilation done:"
    89  	@ls -ld $(GOBIN)/geth-linux-* | grep arm-7
    90  
    91  geth-linux-arm64:
    92  	build/env.sh go run build/ci.go xgo -- --go=$(GO) --targets=linux/arm64 -v ./cmd/geth
    93  	@echo "Linux ARM64 cross compilation done:"
    94  	@ls -ld $(GOBIN)/geth-linux-* | grep arm64
    95  
    96  geth-linux-mips:
    97  	build/env.sh go run build/ci.go xgo -- --go=$(GO) --targets=linux/mips --ldflags '-extldflags "-static"' -v ./cmd/geth
    98  	@echo "Linux MIPS cross compilation done:"
    99  	@ls -ld $(GOBIN)/geth-linux-* | grep mips
   100  
   101  geth-linux-mipsle:
   102  	build/env.sh go run build/ci.go xgo -- --go=$(GO) --targets=linux/mipsle --ldflags '-extldflags "-static"' -v ./cmd/geth
   103  	@echo "Linux MIPSle cross compilation done:"
   104  	@ls -ld $(GOBIN)/geth-linux-* | grep mipsle
   105  
   106  geth-linux-mips64:
   107  	build/env.sh go run build/ci.go xgo -- --go=$(GO) --targets=linux/mips64 --ldflags '-extldflags "-static"' -v ./cmd/geth
   108  	@echo "Linux MIPS64 cross compilation done:"
   109  	@ls -ld $(GOBIN)/geth-linux-* | grep mips64
   110  
   111  geth-linux-mips64le:
   112  	build/env.sh go run build/ci.go xgo -- --go=$(GO) --targets=linux/mips64le --ldflags '-extldflags "-static"' -v ./cmd/geth
   113  	@echo "Linux MIPS64le cross compilation done:"
   114  	@ls -ld $(GOBIN)/geth-linux-* | grep mips64le
   115  
   116  geth-darwin: geth-darwin-386 geth-darwin-amd64
   117  	@echo "Darwin cross compilation done:"
   118  	@ls -ld $(GOBIN)/geth-darwin-*
   119  
   120  geth-darwin-386:
   121  	build/env.sh go run build/ci.go xgo -- --go=$(GO) --targets=darwin/386 -v ./cmd/geth
   122  	@echo "Darwin 386 cross compilation done:"
   123  	@ls -ld $(GOBIN)/geth-darwin-* | grep 386
   124  
   125  geth-darwin-amd64:
   126  	build/env.sh go run build/ci.go xgo -- --go=$(GO) --targets=darwin/amd64 -v ./cmd/geth
   127  	@echo "Darwin amd64 cross compilation done:"
   128  	@ls -ld $(GOBIN)/geth-darwin-* | grep amd64
   129  
   130  geth-windows: geth-windows-386 geth-windows-amd64
   131  	@echo "Windows cross compilation done:"
   132  	@ls -ld $(GOBIN)/geth-windows-*
   133  
   134  geth-windows-386:
   135  	build/env.sh go run build/ci.go xgo -- --go=$(GO) --targets=windows/386 -v ./cmd/geth
   136  	@echo "Windows 386 cross compilation done:"
   137  	@ls -ld $(GOBIN)/geth-windows-* | grep 386
   138  
   139  geth-windows-amd64:
   140  	build/env.sh go run build/ci.go xgo -- --go=$(GO) --targets=windows/amd64 -v ./cmd/geth
   141  	@echo "Windows amd64 cross compilation done:"
   142  	@ls -ld $(GOBIN)/geth-windows-* | grep amd64