dns-ops/docs/Makefile

11 lines
124 B
Makefile
Raw Permalink Normal View History

2013-10-15 08:45:22 +00:00
.PHONY: all
DOCS := $(wildcard *.mkd)
all: $(DOCS:.mkd=.pdf)
%.pdf: %.mkd
pandoc -o $@ $<
clean:
rm -f *.html *.pdf *~