aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/wince/Makefile
diff options
context:
space:
mode:
authorKostas Nakos2007-05-27 19:09:09 +0000
committerKostas Nakos2007-05-27 19:09:09 +0000
commite9351887ba902920a51d107541a63e0333f245d0 (patch)
treeb830bbea66ee2df65cee7ff069714eb7fc63cc41 /backends/platform/wince/Makefile
parent13e42a77b1a17f65035c5772956b3addc1fab386 (diff)
downloadscummvm-rg350-e9351887ba902920a51d107541a63e0333f245d0.tar.gz
scummvm-rg350-e9351887ba902920a51d107541a63e0333f245d0.tar.bz2
scummvm-rg350-e9351887ba902920a51d107541a63e0333f245d0.zip
use better optimization flags
svn-id: r26980
Diffstat (limited to 'backends/platform/wince/Makefile')
-rw-r--r--backends/platform/wince/Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/backends/platform/wince/Makefile b/backends/platform/wince/Makefile
index 44c4b597cf..cc9e2951be 100644
--- a/backends/platform/wince/Makefile
+++ b/backends/platform/wince/Makefile
@@ -3,7 +3,7 @@
# $URL$
# $Id$
-wince_gcc_root = /cygdrive/e/wince-gcc-root/
+wince_gcc_root = /cygdrive/e/wince-gcc-root
srcdir = ../../..
VPATH = $(srcdir)
@@ -41,11 +41,10 @@ AS = arm-wince-pe-as
DEFINES := -D_WIN32_WCE=300 -DARM -D__ARM__ -D_ARM_ -DUNICODE -DSCUMM_NEED_ALIGNMENT -DFPM_DEFAULT -DUSE_MAD -DNONSTANDARD_PORT -DUSE_TREMOR -DUSE_VORBIS -DUSE_MPEG2 -DWIN32 -DUSE_ZLIB
DEFINES += -D__stdcall= -Dcdecl= -D__cdecl__= -D__cdecl= -Wno-multichar
#DEFINES += -DDEBUG -DUSE_WINDBG -g
-DEFINES += -O2
INCLUDES := -I$(srcdir) -I. -I$(srcdir)/engines -Imissing/gcc -Ilibs/include -Ilibs/include/sdl -ICEgui -ICEkeys -I$(wince_gcc_root)/include
-CFLAGS :=
+CFLAGS := -O3 -march=armv4 -mtune=xscale
CXXFLAGS := $(CFLAGS)