mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 18:02:24 +00:00
14 lines
363 B
Makefile
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/...
|