blob: 5a002c3457529457fb03a5e9e27721086c5aa498 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#!/bin/bash
function die() {
echo "Error: $*"
exit 1
}
set -e # fail early
# CD to the top android directory
D=`dirname "$0"`
cd "$D/../../../"
DEST="sdk/eclipse/plugins/com.android.ide.eclipse.traceview/libs"
# computes "../.." from DEST to here (in /android)
BACK=`echo $DEST | sed 's@[^/]*@..@g'`
mkdir -p $DEST
LIBS="traceview"
echo "make java libs ..."
make -j3 showcommands $LIBS || die "TRACEVIEW: Fail to build one of $LIBS."
echo "Copying java libs to $DEST"
HOST=`uname`
if [ "$HOST" == "Linux" ]; then
for LIB in $LIBS; do
ln -svf $BACK/out/host/linux-x86/framework/$LIB.jar "$DEST/"
done
elif [ "$HOST" == "Darwin" ]; then
for LIB in $LIBS; do
ln -svf $BACK/out/host/darwin-x86/framework/$LIB.jar "$DEST/"
done
elif [ "${HOST:0:6}" == "CYGWIN" ]; then
for LIB in $LIBS; do
cp -vf out/host/windows-x86/framework/$LIB.jar "$DEST/"
done
chmod -v a+rx "$DEST"/*.jar
else
echo "Unsupported platform ($HOST). Nothing done."
fi
|