summaryrefslogtreecommitdiff
path: root/Makefile
blob: 0dca7a39369ee3d67bd471d24c06cf807b012171 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
PAGES=index.html\
	  blog/index.html\
	  blog/first.html\

all: $(PAGES)

clean:
	rm -f $(PAGES) dist.tar.gz

dist: all
	tar -cv static $(PAGES) | gzip > dist.tar.gz

%.html: %.md templates/base.m4
	m4 -DPAGECONTENT="$$(markdown $<)" templates/base.m4 > $@

.PHONY: all clean dist