blob: d9651955d7fc385d91d07cc58be122e5e24c51da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/bash
function die() {
echo "Error: $*"
exit 1
}
set -e # fail early
# CD to the top android directory
D=`dirname "$0"`
cd "$D/../../../"
LIBS="swtmenubar"
echo "SDK Manager: make java libs $LIBS"
make -j3 showcommands $LIBS || die "SDK Manager: Failed to build one of $LIBS."
|