summaryrefslogtreecommitdiff
path: root/Makefile
blob: a4b9412efe9d855df2a19b9f1b94953a634f26f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
all: srs-anywhere.html deck-editor.html

srs-anywhere.html: srs-anywhere.html.tpl style.css srs-anywhere.js
	sed '/@@JS@@/r srs-anywhere.js' < srs-anywhere.html.tpl | \
    sed '/@@JS@@/d' | \
    sed '/@@CSS@@/r style.css' | \
    sed '/@@CSS@@/d' > srs-anywhere.html

deck-editor.html: deck-editor.html.tpl style.css deck-editor.js
	sed '/@@JS@@/r deck-editor.js' < deck-editor.html.tpl | \
    sed '/@@JS@@/d' | \
    sed '/@@CSS@@/r style.css' | \
    sed '/@@CSS@@/d' > deck-editor.html

.PHONY: all clean
clean:
	rm *.html