github.com/alanchchen/go-ethereum@v1.6.6-0.20170601190819-6171d01b1195/swarm/dev/Makefile (about) 1 .PHONY: build cluster test 2 3 default: build 4 5 build: 6 go build -o bin/swarm github.com/ethereum/go-ethereum/cmd/swarm 7 go build -o bin/geth github.com/ethereum/go-ethereum/cmd/geth 8 go build -o bin/bootnode github.com/ethereum/go-ethereum/cmd/bootnode 9 10 cluster: build 11 scripts/boot-cluster.sh 12 13 test: 14 go test -v github.com/ethereum/go-ethereum/swarm/...