github.com/niluplatform/go-nilu@v1.7.4-0.20200912082737-a0cb0776d52c/swarm/dev/Makefile (about)

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