ALL_DOCS = $(wildcard *.md)

all: $(ALL_DOCS:.md=.html)

%.html: %.md
	pandoc -s $< > $@

clean:
	rm -f *.html
