view android/scripts/acc.sh @ 4884:27ab20a36eba

- added directx include path to VS2008 solution - updated shape vcproj and add it to VS2008 solution - minor changes (i.e. typecasting) to get rid of compiler warnings in VS
author Andreas Schiffler <aschiffler@ferzkopp.net>
date Wed, 15 Sep 2010 22:15:47 -0700
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 $@