diff options
author | Max Horn | 2009-10-04 22:35:04 +0000 |
---|---|---|
committer | Max Horn | 2009-10-04 22:35:04 +0000 |
commit | 670d8582ff3fe37a72854e1968665d76c2d5ec33 (patch) | |
tree | 3e28a166313874b5b4201af1bf1cdd64a905fe49 | |
parent | 8e73622d134e73b24157d2a58cbbe10099d40f94 (diff) | |
download | scummvm-rg350-670d8582ff3fe37a72854e1968665d76c2d5ec33.tar.gz scummvm-rg350-670d8582ff3fe37a72854e1968665d76c2d5ec33.tar.bz2 scummvm-rg350-670d8582ff3fe37a72854e1968665d76c2d5ec33.zip |
Attempt to fix linuxmoto compilation on our buildbot
svn-id: r44643
-rw-r--r-- | backends/platform/linuxmoto/module.mk | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/backends/platform/linuxmoto/module.mk b/backends/platform/linuxmoto/module.mk index 32ac9119ab..034c10c09a 100644 --- a/backends/platform/linuxmoto/module.mk +++ b/backends/platform/linuxmoto/module.mk @@ -6,8 +6,7 @@ MODULE_OBJS := \ linuxmoto-sdl.o \ linuxmoto-scaler.o \ linuxmoto-graphics.o \ - hardwarekeys.o \ - ../wince/ARMscaler.o + hardwarekeys.o MODULE_DIRS += \ backends/platform/linuxmoto/ @@ -15,5 +14,10 @@ MODULE_DIRS += \ # We don't use the rules.mk here on purpose OBJS := $(addprefix $(MODULE)/, $(MODULE_OBJS)) $(OBJS) -# The linuxmoto backend is based on the SDL one, so we load that, too. +# HACK: We import one of the WinCE scalers +OBJS += backends/platform/wince/ARMscaler.o +MODULE_DIRS += \ + backends/platform/wii/ + +# HACK: The linuxmoto backend is based on the SDL one, so we load that, too. include $(srcdir)/backends/platform/sdl/module.mk |