This commit is contained in:
Thomas FORGIONE
2015-06-29 15:41:18 +02:00
parent d8d1c54fed
commit e5e1513221
8 changed files with 121 additions and 113 deletions

View File

@@ -3,7 +3,7 @@ OPT=--compilation_level SIMPLE_OPTIMIZATIONS
ifeq ($(TYPE),RELEASE)
CLOSURE=java -jar /usr/share/java/closure-compiler/closure-compiler.jar
else
CLOSURE=./compiler.sh
CLOSURE=../utils/compiler.sh
endif
all: List ListTest Socket Three Stats ThreeTools Bouncing Multisphere StreamingSimulator PrototypeTools PrototypeReplay PrototypeInteractive Tutorial

View File

@@ -1,26 +0,0 @@
#!/usr/bin/bash
args=""
while [[ $# > 0 ]]; do
key="$1"
case $key in
--js) args="$args $2"
shift
;;
--js_output_file)
output="$2"
shift
;;
esac
shift
done
if [ -z "$output" ]; then
cat $args
else
cat $args > $output
fi