summaryrefslogtreecommitdiff
path: root/makefile
blob: 820adadd4085990cc7900beb230c35dcbfbbf9e4 (plain)
1
2
3
4
5
6
7
HTML = $(patsubst %.md,%.html,$(shell find -name '*.md'))

all: $(HTML)

%.html: %.md process.py template.html
	python process.py $< $@