blob: 03241f7b60a797ea1677d17d8ff49509b1c67aaa (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | MODULE := backends/platform/gp2xwiz
MODULE_OBJS := \
	gp2xwiz-graphics.o \
	gp2xwiz-events.o \
	gp2xwiz-hw.o \
	gp2xwiz-main.o \
MODULE_DIRS += \
	backends/platform/gp2xwiz/ 
# We don't use the rules.mk here on purpose
OBJS := $(addprefix $(MODULE)/, $(MODULE_OBJS)) $(OBJS)
# Hack to ensure the SDL backend is built so we can use OSystem_SDL.
-include $(srcdir)/backends/platform/sdl/module.mk
 |