aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/gph/module.mk
blob: d8a1a6cd8dbffe95e17630da12afae1e7d2e68c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
MODULE := backends/platform/gph

MODULE_OBJS := \
	gph-main.o \
	gph-backend.o \
	gph-hw.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