Added all task as first task to makefile

This commit is contained in:
Thomas Boerger 2016-02-21 10:38:52 +01:00
parent fe0cc868e0
commit 61e7644905
1 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,4 @@
.PHONY: clean deps fmt vet test docker
.PHONY: all clean deps fmt vet test docker
EXECUTABLE ?= drone-docker
IMAGE ?= plugins/$(EXECUTABLE)
@ -7,6 +7,8 @@ CI_BUILD_NUMBER ?= 0
LDFLAGS = -X "main.buildDate=$(shell date -u '+%Y-%m-%d %H:%M:%S %Z')"
PACKAGES = $(shell go list ./... | grep -v /vendor/)
all: deps build test
clean:
go clean -i ./...