Cleaning
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user