mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 05:38:56 +00:00
14 lines
411 B
Makefile
14 lines
411 B
Makefile
MODULE := backends/platform/openpandora
|
|
|
|
MODULE_OBJS := \
|
|
op-backend.o \
|
|
op-main.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
|