view android/scripts/acc.sh @ 4722:faa228f7ce5b

- Cleaned up a bunch of code - Added 'feature' enable/disable so we're not running accel/sound/whatever in Java when we don't need to be - More work on the sound system. But it still crashes pretty horribly, not sure why yet.
author Paul Hunkin <paul@bieh.net>
date Tue, 27 Jul 2010 21:21:24 +0200
parents 0f05f2f16fad
children
line wrap: on
line source

#!/bin/bash
ANDROID_NDK="/home/paul/Projects/gsoc/sdk/android-ndk-r4"
TOOLS_PATH="$ANDROID_NDK/build/prebuilt/linux-x86/arm-eabi-4.2.1/bin"

export PATH=$TOOLS_PATH:$PATH

CC="arm-eabi-gcc"

#cflags
ACC_C="	-I$ANDROID_NDK/build/platforms/android-8/common/include \
		-I$ANDROID_NDK/build/platforms/android-8/arch-arm/usr/include \
		-DANDROID -DANDROID_NDK -c"
		
		
$CC $CFLAGS $ACC_C $@