mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 09:14:28 +00:00
a41e372b39
Former-commit-id: fa0dc873367b92a06b10fd989e3fec960c03065a [formerly e98efffa565ea6aa3eadeb19c2f9a66a56eb5ddd] Former-commit-id: ce6e4f01d12015e67a51aa7d928a6ab8e8eedeee
15 lines
359 B
Makefile
15 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/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/...
|