project_files/Android-build/complete_build
branchhedgeroid
changeset 5381 8f95038f3f75
parent 5379 4ed99dc92763
child 5383 cb217271f344
--- a/project_files/Android-build/complete_build	Tue Jun 28 18:33:51 2011 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,29 +0,0 @@
-#! /bin/bash
-
-#USER DEFINES
-ANDROID_NDK=/home/richard/SoftDev/android/android-ndk-r5b
-
-#END USER DEFINES
-
-cd SDL-android-project
-$ANDROID_NDK/ndk-build
-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 -f Makefile.android"
-  exit 1
-fi
-cd SDL-android-project
-ant install
-if [ $? -ne 0 ] 
-then 
-  echo "Failed to execute ant install"
-  exit 1
-fi
-exit 0