blob: d571a7d315b169394bca6f92620be0dc34ddb41b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
.PHONY: build cluster test
default: build
build:
go build -o bin/swarm github.com/dexon-foundation/dexon/cmd/swarm
go build -o bin/geth github.com/dexon-foundation/dexon/cmd/geth
go build -o bin/bootnode github.com/dexon-foundation/dexon/cmd/bootnode
cluster: build
scripts/boot-cluster.sh
test:
go test -v github.com/dexon-foundation/dexon/swarm/...
|