Added linked list implementation

This commit is contained in:
Thomas FORGIONE
2015-06-10 17:24:07 +02:00
parent 34b312ae3b
commit 8753d9496d
6 changed files with 290 additions and 1 deletions

View File

@@ -6,13 +6,24 @@ else
CLOSURE=./compiler.sh
endif
all: Socket Three Stats ThreeTools Bouncing Multisphere StreamingSimulator PrototypeTools PrototypeReplay PrototypeInteractive Tutorial
all: List ListTest Socket Three Stats ThreeTools Bouncing Multisphere StreamingSimulator PrototypeTools PrototypeReplay PrototypeInteractive Tutorial
Socket:
cp socket.io/socket.io.min.js ../static/js
$(CLOSURE) $(OPT) \
--js ProgressiveLoader.js >> ../static/js/socket.io.min.js
List:
$(CLOSURE) $(OPT) \
--js List.js \
--js_output_file ../static/js/List.min.js
ListTest:
$(CLOSURE) $(OPT) \
--js ListTest.js \
--js_output_file ../static/js/ListTest.min.js
Three:
cp three/three.min.js ../static/js/
$(CLOSURE) $(OPT) \