mirror of
https://github.com/coredns/coredns.git
synced 2025-10-27 08:14:18 -04:00
* Changed reference to Caddy over to CoreDNS * Removing references to caddy * Fixed misleading error message to reference coredns * Cleaning up references to caddy * Adding clean and deps targets Muscle memory is resulting in "make clean" commands. * Adding test target to makefile * More "Caddy" cleanup
20 lines
219 B
Makefile
20 lines
219 B
Makefile
all:
|
|
go build
|
|
|
|
.PHONY: docker
|
|
docker:
|
|
GOOS=linux go build -a -tags netgo -installsuffix netgo
|
|
docker build -t $$USER/coredns .
|
|
|
|
.PHONY: deps
|
|
deps:
|
|
go get
|
|
|
|
.PHONY: test
|
|
test:
|
|
go test
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
go clean
|