blob: b02bd6b8529183d202a271a5d1f56bb3d61752ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
all: srs-anywhere.html deck-editor.html
srs-anywhere.html: srs-anywhere.html.tpl style.css srs-anywhere.js srs-anywhere-network.js
sed '/@@JS1@@/r srs-anywhere.js' < srs-anywhere.html.tpl | \
sed '/@@JS1@@/d' | \
sed '/@@JS2@@/r srs-anywhere-network.js' | \
sed '/@@JS2@@/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
|