-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
58 lines (36 loc) · 1.61 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
###
### Make to manipulate webpages.
### Note that code relies on MinifyAll extension to first minify the raw source
all:include/pages/CineMatrix.css.h \
include/pages/update.html.h \
include/pages/captivePortal.html.h \
include/pages/networkSetup.html.h \
include/pages/networkConfigPage.js.h \
include/pages/configDone.html.h \
include/pages/redCircleCrossed.svg.h\
include/pages/WebLogin.html.h \
include/pages/helpers.js.h \
@exec true
include/pages/WebLogin.html.h: WEBSources/WebLogin.html
@./ProduceDefine.py $< text/html serverscope > $@
include/pages/test.html.h: WEBSources/test.html
@./ProduceDefine.py $< text/html\;charset=UTF-8 > $@
include/pages/CineMatrix.css.h: WEBsources/CineMatrix-min.css
@./ProduceDefine.py $< text/css > $@
include/pages/update.html.h: WEBsources/update.html
@./ProduceDefine.py $< text/html\;charset=UTF-8 > $@
include/pages/captivePortal.html.h: WEBSources/captivePortal.html
@./ProduceDefine.py $< text/html\;charset=UTF-8 > $@
include/pages/networkSetup.html.h: WEBsources/networkSetup.html
@./ProduceDefine.py $< text/html\;charset=UTF-8 > $@
## the minifyer does something funny with JS
include/pages/networkConfigPage.js.h: WEBSources/networkConfigPage.js
@./ProduceDefine.py $< text/javascript > $@
include/pages/helpers.js.h: WEBSources/helpers.js
@./ProduceDefine.py $< text/javascript > $@
include/pages/configDone.html.h: WEBsources/configDone.html
@./ProduceDefine.py $< text/html\;charset=UTF-8 > $@
include/pages/redCircleCrossed.svg.h: WEBSources/redCircleCrossed.svg
@./ProduceDefine.py $< image/svg+xml serverscope > $@
clean:
rm include/pages/*