project_files/Android-build/Templates/complete_build.sh
author Xeli
Sun, 27 Nov 2011 00:54:00 +0100
changeset 6446 a49d01b96185
parent 6037 8cdc7bc3e38c
permissions -rwxr-xr-x
android: cleaned up the code a bit and removed a bug with the parsing of the xml

#! /bin/sh


cd SDL-android-project
${ANDROID_NDK}/ndk-build -j 8
if [ $? -ne 0 ] 
then 
  echo "Failed to execute ${ANDROID_NDK}/ndk-build"
  exit 1
fi

cd ..
make -f Makefile.android
if [ $? -ne 0 ] 
then 
  echo "Failed to execute make"
  exit 1
fi

cd SDL-android-project
ant install
if [ $? -ne 0 ] 
then 
  echo "Failed to execute ant install"
  exit 1
fi
exit 0