mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 02:42:27 +00:00
14 lines
359 B
Makefile
14 lines
359 B
Makefile
.PHONY: build cluster test
|
|
|
|
default: build
|
|
|
|
build:
|
|
go build -o bin/swarm github.com/ethereum/go-ethereum/cmd/swarm
|
|
go build -o bin/tomo github.com/ethereum/go-ethereum/cmd/tomo
|
|
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/...
|