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