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

# linux / Windows MinGW
CC= arm-none-linux-gnueabi-gcc
AR = arm-none-linux-gnueabi-ar
RANLIB = arm-none-linux-gnueabi-ranlib
CFLAGS = -g -Wall -O2 -w -static
LFLAGS = -s -static 


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