Fix the deps build (#583)

The deps target needs to be dependent on the generated middleware code,
or you end up having to do make twice.
This commit is contained in:
John Belamaric 2017-03-13 11:55:44 -04:00 committed by Miek Gieben
parent 05dee778bd
commit 4985d698e2

View file

@ -7,11 +7,11 @@ all: coredns
# Phony this to ensure we always build the binary.
# TODO: Add .go file dependencies.
.PHONY: coredns
coredns: check core/zmiddleware.go core/dnsserver/zdirectives.go
coredns: check
go build $(BUILD_VERBOSE) -ldflags="-s -w"
.PHONY: deps
deps:
deps: core/zmiddleware.go core/dnsserver/zdirectives.go
go get ${BUILD_VERBOSE}
go get -u github.com/golang/lint/golint