diff --git a/Makefile b/Makefile index c953379..5880f13 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,9 @@ GO ?= go DEPLOY_ACCOUNT := appleboy DEPLOY_IMAGE := $(EXECUTABLE) GOFMT ?= gofmt "-s" +EXTERNAL_TOOLS=\ + github.com/mitchellh/gox \ + github.com/kardianos/govendor TARGETS ?= linux darwin windows ARCHS ?= amd64 386 @@ -42,6 +45,13 @@ ifeq ($(ANDROID_TEST_TOKEN),) endif @echo "Already set ANDROID_API_KEY and ANDROID_TEST_TOKEN globale variable." +# bootstrap the build by downloading additional tools +bootstrap: + @for tool in $(EXTERNAL_TOOLS) ; do \ + echo "Installing/Updating $$tool" ; \ + go get -u $$tool; \ + done + fmt: $(GOFMT) -w $(GOFILES)