Files
coredns.io/Makefile
T
Miek Gieben 1457b0ca3f Rename middleware to plugins
This only touches the meta data on the website; does not touch
the content; either in separate commit or PR.
2017-09-13 16:41:08 +00:00

15 lines
248 B
Makefile

all:
hugo -d /opt/www/coredns.io
.PHONY: clean
clean:
rm -rf /opt/www/coredns.io/*
.PHONY: test
test:
hugo server
.PHONY: sync-from-coredns
sync-from-coredns:
( cd bin; ./sync-from-coredns.py $$GOPATH/src/github.com/coredns/coredns/plugin )