Merge pull request #1481 from stevvooe/remove-AUTHORS-from-default-make-target

Makefile: remove AUTHORS from default target
This commit is contained in:
Aaron Lehmann 2016-02-26 23:26:40 -08:00
commit 770b6728db

View file

@ -14,8 +14,8 @@ endif
GO_LDFLAGS=-ldflags "-X `go list ./version`.Version=$(VERSION)"
.PHONY: clean all fmt vet lint build test binaries
.DEFAULT: default
all: AUTHORS clean fmt vet fmt lint build test binaries
.DEFAULT: all
all: fmt vet fmt lint build test binaries
AUTHORS: .mailmap .git/HEAD
git log --format='%aN <%aE>' | sort -fu > $@