Added coin creator

This commit is contained in:
Thomas FORGIONE
2015-07-17 11:32:57 +02:00
parent 267cfddd27
commit b397a18bea
11 changed files with 338 additions and 17 deletions

View File

@@ -6,7 +6,10 @@ else
CLOSURE=../utils/simple-compiler/compiler.sh
endif
all: L3D L3DP Socket Three Stats Bouncing Multisphere StreamingSimulator PrototypeReplay PrototypeInteractive Tutorial TestList
all: L3D L3DP Socket Three Stats Bouncing Multisphere StreamingSimulator PrototypeReplay PrototypeInteractive Tutorial TestList CoinCreator FileSaver
FileSaver:
cp filesaver.min.js ../static/js/filesaver.min.js
L3D:
$(CLOSURE) $(OPT) \
@@ -84,6 +87,11 @@ PrototypeInteractive:
--js l3d/apps/prototype/interactive/main.js \
--js_output_file ../static/js/prototypeinteractive.min.js
CoinCreator:
$(CLOSURE) $(OPT) \
--js l3d/apps/prototype/coin-creator/main.js \
--js_output_file ../static/js/coincreator.min.js
PrototypeReplay:
$(CLOSURE) $(OPT) \
--js l3d/apps/prototype/ButtonManager.js \