project_files/Android-build/Templates/complete_build.sh
author Xeli
Sat, 08 Oct 2011 14:52:16 +0200
branchhedgeroid
changeset 6037 8cdc7bc3e38c
parent 5381 8f95038f3f75
permissions -rwxr-xr-x
Allow for multicore compiling on quadcores, everyone has one right? :P It has perfomance benifits on single cores too so it's all good =)

#! /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