Reduced data duplication in module.mk files; added module.mk files for null and x11 backends; added engines/module.mk

svn-id: r20584
This commit is contained in:
Max Horn 2006-02-12 00:16:31 +00:00
parent 136ecfc1e8
commit 80cf2fa46f
24 changed files with 482 additions and 470 deletions

View file

@ -1,12 +1,12 @@
MODULE := backends/sdl
MODULE_OBJS := \
backends/sdl/events.o \
backends/sdl/graphics.o \
backends/sdl/sdl.o
events.o \
graphics.o \
sdl.o
MODULE_DIRS += \
backends/sdl
# We don't use the common.rules here on purpose
OBJS := $(MODULE_OBJS) $(OBJS)
OBJS := $(addprefix $(MODULE)/, $(MODULE_OBJS)) $(OBJS)