You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
set +x
|
|
|
|
|
|
|
|
test x$NDK = x && echo "NDK env var not set"
|
|
|
|
test x$NDK = x && exit 1
|
|
|
|
root="$(readlink -f $(dirname $0)/../)"
|
|
|
|
cd "$root"
|
|
|
|
./contrib/android-configure.sh $@
|
|
|
|
make -C build-android -j ${JOBS:-$(nproc)}
|