Moved events related code to backends/events/dinguxsdl/* and move graphics related code to backends/graphics/dinguxsdl/* Subclass OSystem_POSIX instead of OSystem_SDL svn-id: r53730
11 lines
220 B
Makefile
11 lines
220 B
Makefile
MODULE := backends/platform/dingux
|
|
|
|
MODULE_OBJS := \
|
|
main.o \
|
|
dingux.o
|
|
|
|
MODULE_DIRS += \
|
|
backends/platform/dingux/
|
|
|
|
# We don't use the rules.mk here on purpose
|
|
OBJS := $(addprefix $(MODULE)/, $(MODULE_OBJS)) $(OBJS)
|