mirror of
https://github.com/coredns/coredns.git
synced 2025-10-27 08:14:18 -04:00
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:
committed by
Miek Gieben
parent
05dee778bd
commit
4985d698e2
4
Makefile
4
Makefile
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user