blob: 365964b7f56c6f153bc0fbed23f7c2c72d8cdc1c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
.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:
go test -v github.com/ethereum/go-ethereum/swarm/...
|