mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-26 11:46:54 +00:00
15 lines
437 B
Makefile
15 lines
437 B
Makefile
MODULE := backends/platform/linuxmoto
|
|
|
|
MODULE_OBJS := \
|
|
linuxmoto-main.o \
|
|
linuxmoto-sdl.o \
|
|
hardwarekeys.o
|
|
|
|
# We don't use rules.mk but rather manually update OBJS and MODULE_DIRS.
|
|
MODULE_OBJS := $(addprefix $(MODULE)/, $(MODULE_OBJS))
|
|
OBJS := $(MODULE_OBJS) $(OBJS)
|
|
MODULE_DIRS += $(sort $(dir $(MODULE_OBJS)))
|
|
|
|
# Hack to ensure the SDL backend is built so we can use OSystem_SDL.
|
|
-include $(srcdir)/backends/platform/sdl/module.mk
|