mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-27 12:16:59 +00:00
670d8582ff
svn-id: r44643
24 lines
585 B
Makefile
24 lines
585 B
Makefile
MODULE := backends/platform/linuxmoto
|
|
|
|
MODULE_OBJS := \
|
|
linuxmoto-main.o \
|
|
linuxmoto-events.o \
|
|
linuxmoto-sdl.o \
|
|
linuxmoto-scaler.o \
|
|
linuxmoto-graphics.o \
|
|
hardwarekeys.o
|
|
|
|
MODULE_DIRS += \
|
|
backends/platform/linuxmoto/
|
|
|
|
# We don't use the rules.mk here on purpose
|
|
OBJS := $(addprefix $(MODULE)/, $(MODULE_OBJS)) $(OBJS)
|
|
|
|
# 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
|