#####################################################################
# C compiler

# linux / Windows MinGW
CC= arm-none-linux-gnueabi-gcc
LD= arm-none-linux-gnueabi-gcc
#LD= arm-none-linux-gnueabi-ld
AR = arm-none-linux-gnueabi-ar
RANLIB = arm-none-linux-gnueabi-ranlib
CFLAGS = -Wall -O2 -w -static
LFLAGS = -s -static
#CFLAGS = -Wall -O2 -w
#LFLAGS = --entry=_start --dynamic-linker /system/bin/linker -nostdlib -rpath /system/lib -rpath ~/tmp/android/system/lib -L ~/tmp/android/system/lib 


#####################################################################
# SDL configuration (for the examples only)

UI_LIBS = -L../../SDL-1.2.13 -lSDL
UI_INCLUDES = -I../../SDL-1.2.13/include 


####################################################################
# Compile and link control

DIRS= src
