xwords/xwords4/android/scripts/ndkbuild.sh

17 lines
251 B
Bash
Raw Normal View History

#!/bin/sh
OLDDIR=$(pwd)
if [ -z "$NDK_ROOT" ]; then
echo -n "NDK_ROOT not set... "
2012-01-03 03:11:36 +01:00
echo "NDK not found; install and set NDK_ROOT to point to it"
exit 1
fi
2012-01-03 03:11:36 +01:00
cd $(dirname $0)/../XWords4
2012-01-03 03:11:36 +01:00
${NDK_ROOT}/ndk-build $*
cd $OLDDIR
echo "$0 done"