aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/gp2xwiz/module.mk
diff options
context:
space:
mode:
Diffstat (limited to 'backends/platform/gp2xwiz/module.mk')
-rw-r--r--backends/platform/gp2xwiz/module.mk9
1 files changed, 4 insertions, 5 deletions
diff --git a/backends/platform/gp2xwiz/module.mk b/backends/platform/gp2xwiz/module.mk
index e162555493..c76238f679 100644
--- a/backends/platform/gp2xwiz/module.mk
+++ b/backends/platform/gp2xwiz/module.mk
@@ -7,11 +7,10 @@ MODULE_OBJS := \
gp2xwiz-main.o \
gp2xwiz-loader.o
-MODULE_DIRS += \
- backends/platform/gp2xwiz/
-
-# We don't use the rules.mk here on purpose
-OBJS := $(addprefix $(MODULE)/, $(MODULE_OBJS)) $(OBJS)
+# 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 \ No newline at end of file