blob: 5ad5a8cdec667315d8e3836f593ce9a7b3dccc9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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"
|