scummvm/engines/toon/module.mk
David Turner 279a760c5a TOON: Added basic debugging console to engine
Since Toon uses Debug Channels, this allows for the interactive setting of debugflags as well as providing a base for adding further debugging commands.
However, the hotkey for this is currently disabled as it causes a segfault. Not sure why.

svn-id: r54123
2010-11-07 17:18:59 +00:00

32 lines
430 B
Makefile

MODULE := engines/toon
MODULE_OBJS := \
anim.o \
audio.o \
character.o \
console.o \
conversation.o \
detection.o \
drew.o \
flux.o \
font.o \
hotspot.o \
movie.o \
path.o \
picture.o \
resource.o \
script.o \
script_func.o \
state.o \
text.o \
tools.o \
toon.o
# This module can be built as a plugin
ifeq ($(ENABLE_TOON), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk