.PHONY: all
all: index.html

index.html: index.md index.css
	pandoc --from markdown --to html --standalone --css $(word 2,$^) --output $@ $< 

clean:
	rm -f index.html