aboutsummaryrefslogtreecommitdiff
path: root/makefile
blob: 61b512f1e38054a8aa68cc1ff328cb61dc5e9a7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
all: back-template.html front-template.html

.PRECIOUS: card.min.js

card.min.js: card/card.js
	sed 's/\/\/.*$$//g' $< | tr '\n' ' ' | sed 's/\t//g' | sed 's/  */ /g' > $@

%.html: %.m4
	m4 $< > $@

back-template.html: card.min.js card/card.css
front-template.html: card.min.js card/card.css

clean:
	$(RM) back-template.html front-template.html card.min.js