14 lines
401 B
Makefile
14 lines
401 B
Makefile
# 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."
|
|
|
|
alltools:
|
|
build/env.sh go run build/ci.go install ./cmd/...
|