Added linked list implementation
This commit is contained in:
13
js/Makefile
13
js/Makefile
@@ -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) \
|
||||
|
||||
Reference in New Issue
Block a user