summaryrefslogtreecommitdiff
path: root/Makefile
blob: 76190f91913823f05799b7869e4ee474270e11a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
PAGES=index.html\
	  blog/index.html\
	  blog/test.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