Makefile 359 B

123456789101112131415
  1. .PHONY: build cluster test
  2. default: build
  3. build:
  4. go build -o bin/swarm github.com/ethereum/go-ethereum/cmd/swarm
  5. go build -o bin/geth github.com/ethereum/go-ethereum/cmd/geth
  6. go build -o bin/bootnode github.com/ethereum/go-ethereum/cmd/bootnode
  7. cluster: build
  8. scripts/boot-cluster.sh
  9. test:
  10. go test -v github.com/ethereum/go-ethereum/swarm/...