diff options
author | Kostas Nakos | 2007-04-28 17:40:44 +0000 |
---|---|---|
committer | Kostas Nakos | 2007-04-28 17:40:44 +0000 |
commit | 2a80fc1c6b3404663a67a0d3ed3c9b44d83c22d9 (patch) | |
tree | 04eb65d7e18d99fad1410a2ffb86b7da9b333104 /backends | |
parent | dae21b3b3189969db665d6c187644adea7e6cc0f (diff) | |
download | scummvm-rg350-2a80fc1c6b3404663a67a0d3ed3c9b44d83c22d9.tar.gz scummvm-rg350-2a80fc1c6b3404663a67a0d3ed3c9b44d83c22d9.tar.bz2 scummvm-rg350-2a80fc1c6b3404663a67a0d3ed3c9b44d83c22d9.zip |
update for cruise engine, fix a little oops LordHoto pointed out
svn-id: r26661
Diffstat (limited to 'backends')
-rw-r--r-- | backends/platform/wince/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/backends/platform/wince/Makefile b/backends/platform/wince/Makefile index 7ff9b5af8d..44c4b597cf 100644 --- a/backends/platform/wince/Makefile +++ b/backends/platform/wince/Makefile @@ -3,6 +3,7 @@ # $URL$ # $Id$ +wince_gcc_root = /cygdrive/e/wince-gcc-root/ srcdir = ../../.. VPATH = $(srcdir) @@ -10,7 +11,7 @@ VPATH = $(srcdir) #DISABLE_SKY = 1 #DISABLE_QUEEN = 1 #DISABLE_GOB = 1 -#DISABLE_LURE = 1 +DISABLE_LURE = 1 #DISABLE_CINE = 1 #DISABLE_SAGA = 1 #DISABLE_KYRA = 1 @@ -20,8 +21,9 @@ VPATH = $(srcdir) #DISABLE_SWORD2 = 1 #DISABLE_TOUCHE = 1 DISABLE_PARALLACTION = 1 +DISABLE_CRUISE = 1 -DISABLE_HQ_SCALERS = 1 +#DISABLE_HQ_SCALERS = 1 CXX = arm-wince-pe-g++ LD = arm-wince-pe-g++ @@ -41,13 +43,13 @@ 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/cygdrive/e/wince-gcc-root/include +INCLUDES := -I$(srcdir) -I. -I$(srcdir)/engines -Imissing/gcc -Ilibs/include -Ilibs/include/sdl -ICEgui -ICEkeys -I$(wince_gcc_root)/include CFLAGS := CXXFLAGS := $(CFLAGS) -LDFLAGS := -Llibs/lib -L/cygdrive/e/wince-gcc-root/lib +LDFLAGS := -Llibs/lib -L$(wince_gcc_root)/lib LIBS := -lSDL -lzlib -lmad -lmpeg2 -ltremorce --entry WinMainCRTStartup TARGET = scummvm.exe |