mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
359 B
15 lines
359 B
8 years ago
|
.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/...
|