github.com/aaa256/atlantis@v0.0.0-20210707112435-42ee889287a2/swarm/dev/Makefile (about)

     1  .PHONY: build cluster test
     2  
     3  default: build
     4  
     5  build:
     6  	go build -o bin/swarm    github.com/athereum/go-athereum/cmd/swarm
     7  	go build -o bin/gath     github.com/athereum/go-athereum/cmd/gath
     8  	go build -o bin/bootnode github.com/athereum/go-athereum/cmd/bootnode
     9  
    10  cluster: build
    11  	scripts/boot-cluster.sh
    12  
    13  test:
    14  	go test -v github.com/athereum/go-athereum/swarm/...