diff options
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" |
