summaryrefslogtreecommitdiff
path: root/Makefile
blob: 9b3385ebc360fb9fc838dc101ed2caaa022325a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
all: activity.html

%.html: generate.lua activity.lua
	lua generate.lua >$@

clean:
	rm -f *.html

test:
	busted

.PHONY: all clean test