diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2014-04-03 23:40:17 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2014-04-08 20:57:27 +0200 |
commit | 7f3c934a60d2b4e56608aa0e777e3868620b5f31 (patch) | |
tree | fb9deefd7bd3500457006ba0b49c5edd4b2efa14 /Algorithms/Part-II/1-WordNet/run.sh | |
parent | 31effd10b34f4de8bbb3a509187eebb5cc0f3b65 (diff) | |
download | coursera-7f3c934a60d2b4e56608aa0e777e3868620b5f31.zip coursera-7f3c934a60d2b4e56608aa0e777e3868620b5f31.tar.gz |
Algorithms-II : 1-WordNet: replace run.sh with Makefile
Diffstat (limited to 'Algorithms/Part-II/1-WordNet/run.sh')
-rwxr-xr-x | Algorithms/Part-II/1-WordNet/run.sh | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Algorithms/Part-II/1-WordNet/run.sh b/Algorithms/Part-II/1-WordNet/run.sh deleted file mode 100755 index 7ec80c5..0000000 --- a/Algorithms/Part-II/1-WordNet/run.sh +++ /dev/null @@ -1,19 +0,0 @@ -#! /bin/bash - -ALGS4=../../algs4 -export CLASSPATH="$ALGS4/algs4.jar:$ALGS4/stdlib.jar:." - -CLASSES="SpecializedBFS WordNet SAP Outcast" - -rm *.class *.zip 2>/dev/null - -for kls in $CLASSES; do - $ALGS4/bin/checkstyle ${kls}.java - javac -Xlint ${kls}.java || exit 1 -done -$ALGS4/bin/findbugs *.class - -java Outcast || exit 1 - -zip wordnet.zip *.java - |