diff options
| author | Ido Hadanny <ido.hadanny@gmail.com> | 2011-09-22 21:30:13 +0300 |
|---|---|---|
| committer | Ido Hadanny <ido.hadanny@gmail.com> | 2011-09-22 21:30:13 +0300 |
| commit | 53b947df484159f5934898ba6c0aa69a9c869007 (patch) | |
| tree | 189d5903a67765c390de8f1e3423e6b80cde57d1 /roombacomm-client/src/scripts/build-jar.sh | |
| parent | 654ca6d59e99b5e72b05dfb917bc5888c4ba6b1b (diff) | |
added stuff
Diffstat (limited to 'roombacomm-client/src/scripts/build-jar.sh')
| -rwxr-xr-x | roombacomm-client/src/scripts/build-jar.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/roombacomm-client/src/scripts/build-jar.sh b/roombacomm-client/src/scripts/build-jar.sh new file mode 100755 index 0000000..5ad5a8c --- /dev/null +++ b/roombacomm-client/src/scripts/build-jar.sh @@ -0,0 +1,15 @@ +#!/bin/sh +# +# Builds the jar file for the core RoombaComm classes +# This core is used for all direct-connect (serial,etc) cases +# +# Before running this script, compile all the .java files to .class files +# and "cd build" +# +# + +base=`dirname "$0"` + +echo "buidling roombacomm.jar..." +jar -cfm roombacomm.jar packaging/Manifest.txt roombacomm +echo "done" |
