go-ethereum/swarm/dev/Makefile
2019-02-12 04:53:39 +05:30

14 lines
357 B
Makefile

.PHONY: build cluster test
default: build
build:
go build -o bin/swarm github.com/ethereum/go-ethereum/cmd/swarm
go build -o bin/XDC github.com/ethereum/go-ethereum/cmd/XDC
go build -o bin/bootnode github.com/ethereum/go-ethereum/cmd/bootnode
cluster: build
scripts/boot-cluster.sh
test:
go test -v github.com/ethereum/go-ethereum/swarm/...