scummvm/engines/draci/module.mk
Robert Špalek b6d7da6927 Implement all boilerplate concerning Global Main Menu.
All currently defined featues will be supported.  I have implemented 
everything boilerplatish, except for the actual game saving/loading (which
will come in the next commit), getting volumes from the configuration
(because we don't play sounds yet), and changing subtitles.

svn-id: r44583
2009-10-04 03:50:10 +00:00

27 lines
375 B
Makefile

MODULE := engines/draci
MODULE_OBJS := \
draci.o \
detection.o \
barchive.o \
script.o \
font.o \
saveload.o \
sprite.o \
screen.o \
surface.o \
mouse.o \
game.o \
animation.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