-
Notifications
You must be signed in to change notification settings - Fork 605
/
Makefile
131 lines (101 loc) · 4.59 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
##############################
# Definitions
##############################
REQUIRED_BINS = svn wget java python
##############################
# Rules
##############################
all: deps games
index: common
python build/compress.py index
puzzle: common
python build/compress.py puzzle
maze: common
python build/compress.py maze
bird: common
python build/compress.py bird
turtle: common
python build/compress.py turtle
movie: common
python build/compress.py movie
music: common
python build/compress.py music
pond-tutor: common
python build/compress.py pond/tutor
pond-duck: common
python build/compress.py pond/duck
gallery: common
python build/compress.py gallery
games: index puzzle maze bird turtle movie music pond-tutor pond-duck gallery
common:
@echo "Converting messages.js to JSON for Translatewiki."
python build/messages_to_json.py
@echo "Converting JSON from Translatewiki to message files."
python build/json_to_js.py
@echo
deps:
$(foreach bin,$(REQUIRED_BINS),\
$(if $(shell command -v $(bin) 2> /dev/null),$(info Found `$(bin)`),$(error Please install `$(bin)`)))
mkdir -p build/third-party-downloads
wget -N https://unpkg.com/google-closure-compiler-java/compiler.jar;
mv -f compiler.jar build/third-party-downloads/closure-compiler.jar;
mkdir -p appengine/third-party
wget -N https://unpkg.com/@babel/standalone@7.14.8/babel.min.js
mv babel.min.js appengine/third-party/
@# GitHub doesn't support git archive, so download files using svn.
svn export --force https://github.com/ajaxorg/ace-builds/trunk/src-min-noconflict/ appengine/third-party/ace
mkdir -p appengine/third-party/blockly
svn export --force https://github.com/NeilFraser/blockly-for-BG/trunk/ appengine/third-party/blockly
svn export --force https://github.com/CreateJS/SoundJS/trunk/lib/ appengine/third-party/SoundJS
cp third-party/base.js appengine/third-party/
cp -R third-party/soundfonts appengine/third-party/
svn export --force https://github.com/NeilFraser/JS-Interpreter/trunk/ appengine/third-party/JS-Interpreter
@# Compile JS-Interpreter using SIMPLE_OPTIMIZATIONS because the Music game needs to mess with the stack.
java -jar build/third-party-downloads/closure-compiler.jar\
--language_out ECMASCRIPT5\
--language_in ECMASCRIPT5\
--js appengine/third-party/JS-Interpreter/acorn.js\
--js appengine/third-party/JS-Interpreter/interpreter.js\
--js_output_file appengine/third-party/JS-Interpreter/compressed.js
offline: clean-offline
mkdir offline
cp -R appengine offline/blockly-games
rm -f offline/blockly-games/*.{yaml,py,sh}
rm -f offline/blockly-games/{admin.html,apple-touch-icon.png,favicon.ico,robots.txt}
rm -rf offline/blockly-games/gallery*
rm -rf offline/blockly-games/generated/
rm -rf offline/blockly-games/{./,*,*/*}/src
rm -f offline/blockly-games/{./,*,*/*}/generated/uncompressed.js
rm -f offline/blockly-games/index/title.png
rm -f offline/blockly-games/index/title-beta.png
rm -f offline/blockly-games/pond/crobots.txt
rm -rf offline/blockly-games/pond/battle
rm -f offline/blockly-games/common/stripes.svg
rm -f offline/blockly-games/third-party/base.js
rm -f offline/blockly-games/third-party/soundfonts/README.txt
mv offline/blockly-games/third-party/ace/{ace.js,mode-javascript.js,theme-chrome.js,worker-javascript.js} offline/
rm -rf offline/blockly-games/third-party/ace/*
mv offline/{ace.js,mode-javascript.js,theme-chrome.js,worker-javascript.js} offline/blockly-games/third-party/ace/
mv offline/blockly-games/third-party/SoundJS/soundjs.min.js offline/
rm -rf offline/blockly-games/third-party/SoundJS/*
mv offline/soundjs.min.js offline/blockly-games/third-party/SoundJS/
mv offline/blockly-games/third-party/blockly/media/ offline/
rm -rf offline/blockly-games/third-party/blockly/*
mv offline/media/ offline/blockly-games/third-party/blockly/
mv offline/blockly-games/third-party/JS-Interpreter/compressed.js offline/
rm -rf offline/blockly-games/third-party/JS-Interpreter/{*,.gitignore}
mv offline/compressed.js offline/blockly-games/third-party/JS-Interpreter/
echo '<html><head><meta http-equiv=refresh content="0; url=blockly-games/index.html"/></head></html>' > offline/blockly-games.html
find offline -name '.DS_Store' -delete
cd offline; \
zip -r9 blockly-games.zip blockly-games/ blockly-games.html
clean: clean-games clean-offline clean-deps
clean-games:
rm -rf appengine/{.,index,puzzle,maze,bird,turtle,movie,music,pond,pond/tutor,pond/duck,gallery}/generated
clean-offline:
rm -rf offline/
clean-deps:
rm -rf appengine/third-party
rm -rf build/third-party-downloads
# Prevent non-traditional rules from exiting with no changes.
.PHONY: deps