HTML := $(patsubst %.md,%.html,$(wildcard *.md))

all: $(HTML)

%.html: %.md
	pandoc $< -o $@
