Makefile: added support for "make swarm" command (#1412)

This commit is contained in:
Aron
2019-06-03 20:59:48 +02:00
committed by Anton Evangelatov
parent 3e522f2e7d
commit 70320ceeae
2 changed files with 21 additions and 0 deletions

11
Makefile Normal file
View File

@@ -0,0 +1,11 @@
# This Makefile is meant to be used by people that do not usually work
# with Go source code. If you know what GOPATH is then you probably
# don't need to bother with make.
GOBIN = $(shell pwd)/build/bin
swarm:
build/env.sh go run build/ci.go install ./cmd/swarm
@echo "Done building."
@echo "Run \"$(GOBIN)/swarm\" to launch swarm."