go-ethereum/swarm/dev/Makefile
2018-04-28 13:05:13 +07:00

14 lines
363 B
Makefile

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