mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-07 05:24:46 +01:00
e00938aeb1
convention, but also not to require either if ndk-build is on PATH.
24 lines
440 B
Bash
Executable file
24 lines
440 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e -u
|
|
|
|
ANDROID_NDK=${ANDROID_NDK:-''}
|
|
|
|
if [ ! -e build.xml ]; then
|
|
echo "no build.xml; please run from root of source tree"
|
|
exit 1
|
|
fi
|
|
|
|
if [ -z "$ANDROID_NDK" ]; then
|
|
if which ndk-build >/dev/null; then
|
|
ANDROID_NDK=$(dirname $(which ndk-build))
|
|
else
|
|
echo -n "ANDROID_NDK not set... "
|
|
echo "NDK not found; install and set ANDROID_NDK to point to it"
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
${ANDROID_NDK}/ndk-build $*
|
|
|
|
echo "$0 done"
|