scummvm/engines/sword1/module.mk
David Turner cb734285a5 SWORD1: Added basic debugging console to engine
SWORD1 does not currently use Debug Channels, but this does provide a base for adding them along with any other debugging commands.

svn-id: r54140
2010-11-08 12:22:58 +00:00

31 lines
426 B
Makefile

MODULE := engines/sword1
MODULE_OBJS := \
animation.o \
console.o \
control.o \
debug.o \
detection.o \
eventman.o \
logic.o \
memman.o \
menu.o \
mouse.o \
music.o \
objectman.o \
resman.o \
router.o \
screen.o \
sound.o \
staticres.o \
sword1.o \
text.o
# This module can be built as a plugin
ifeq ($(ENABLE_SWORD1), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk