Files
coredns.io/Makefile
T
Miek Gieben e9fd21df6e Use better corefile scanner
Start coredns with the configs and see if that works. Found a few that
are troublesome, fixed.
2017-11-29 11:36:46 +00:00

22 lines
497 B
Makefile

all:
hugo -d /var/www/coredns.io
.PHONY: clean
clean:
rm -rf /var/www/coredns.io/*
.PHONY: test
test:
hugo server
# Sync CoreDNS' plugin README.md's to coredns.io. Uses $GOPATH to find them.
.PHONY: sync
sync:
( cd bin; ./sync-from-coredns.py $$GOPATH/src/github.com/coredns/coredns/plugin )
# Scan all markdown files for Corefile snippets and check validity
# github.com/miekg/corecheck
.PHONY: scan
scan:
corecheck -exe $$GOPATH/src/github.com/coredns/coredns/coredns -dir content/blog