OUTPUT = index.html

.SUFFIXES: .html .txt

all: $(OUTPUT)

.txt.html:
	pandoc -f markdown -t html $^ > $@
