md=$(shell ls *.md) mdhtml=$(md:%.md=%.html) all: $(mdhtml) %.html: %.md pandoc --from markdown \ --to html5 \ --css styles.css \ --standalone $< -o $@