blob: 6ed3114bf366ae678d3da8a9a881a02c086d2c7f (
plain)
1
2
3
4
5
6
7
8
9
10
|
HTML = $(patsubst %.md,%.html,$(shell find -name '*.md'))
.PHONY: all clean
all: $(HTML)
clean:
rm -vf $(HTML)
%.html: %.md process.py template.html
python process.py $< $@
|