scummvm/engines/draci/module.mk
Robert Špalek a20e42efb9 Move WalkingMap into new module.
Also, fix a bug when loading the default walking map (wasn't implemented)
and setting font size.  The reason I move this code into a new module is
because I will augment it with other walking-related algorithms soon.

svn-id: r45510
2009-10-30 00:52:05 +00:00

30 lines
410 B
Makefile

MODULE := engines/draci
MODULE_OBJS := \
draci.o \
detection.o \
barchive.o \
script.o \
font.o \
saveload.o \
sound.o \
music.o \
sprite.o \
screen.o \
surface.o \
mouse.o \
game.o \
animation.o \
walking.o
MODULE_DIRS += \
engines/draci
# This module can be built as a plugin
ifeq ($(ENABLE_DRACI), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk