blob: 96f8b0a17fcc5e973a11aaf918549c5de423699e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
PAGES=index.html\
blog/index.html\
blog/test.html
all: $(PAGES)
clean:
rm -f $(PAGES)
%.html: %.md templates/base.m4
m4 -DPAGECONTENT="$$(markdown $<)" templates/base.m4 > $@
.PHONY: all clean
|