2017-06-01 11:52:18 +01:00
|
|
|
.PHONY: build cluster test
|
|
|
|
|
|
|
|
default: build
|
|
|
|
|
|
|
|
build:
|
|
|
|
go build -o bin/swarm github.com/ethereum/go-ethereum/cmd/swarm
|
|
|
|
go build -o bin/geth github.com/ethereum/go-ethereum/cmd/geth
|
|
|
|
go build -o bin/bootnode github.com/ethereum/go-ethereum/cmd/bootnode
|
|
|
|
|
|
|
|
cluster: build
|
|
|
|
scripts/boot-cluster.sh
|
|
|
|
|
|
|
|
test:
|
2019-06-03 12:28:18 +02:00
|
|
|
go test -v github.com/ethersphere/swarm/...
|