mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 22:28:10 +00:00
279a760c5a
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
32 lines
430 B
Makefile
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
|