mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-31 00:53:46 +00:00
14 lines
367 B
Makefile
14 lines
367 B
Makefile
.PHONY: build cluster test
|
|
|
|
default: build
|
|
|
|
build:
|
|
go build -o bin/swarm github.com/expanse-org/go-expanse/cmd/swarm
|
|
go build -o bin/geth github.com/expanse-org/go-expanse/cmd/geth
|
|
go build -o bin/bootnode github.com/expanse-org/go-expanse/cmd/bootnode
|
|
|
|
cluster: build
|
|
scripts/boot-cluster.sh
|
|
|
|
test:
|
|
go test -v github.com/expanse-org/go-expanse/swarm/...
|