mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-16 15:08:59 +00:00
adef4c3f42
Rewritten input system with many new feature. Fixed related bugs and shortcomings on the way.
16 lines
333 B
Makefile
16 lines
333 B
Makefile
MODULE := backends/platform/android
|
|
|
|
MODULE_OBJS := \
|
|
jni.o \
|
|
texture.o \
|
|
asset-archive.o \
|
|
android.o \
|
|
gfx.o \
|
|
events.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)))
|
|
|