aboutsummaryrefslogtreecommitdiffstats
path: root/swarm/dev/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'swarm/dev/Makefile')
-rw-r--r--swarm/dev/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/swarm/dev/Makefile b/swarm/dev/Makefile
new file mode 100644
index 000000000..365964b7f
--- /dev/null
+++ b/swarm/dev/Makefile
@@ -0,0 +1,14 @@
+.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/...