scummvm/engines/draci/module.mk
David Turner 3d961469fd DRACI: Added basic debugging console to engine
Since DRACI uses Debug Channels, this allows for the interactive setting of debugflags as well as providing a base for adding further debugging commands.

svn-id: r54116
2010-11-07 15:03:54 +00:00

28 lines
389 B
Makefile

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