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

svn-id: r54139
2010-11-08 12:17:19 +00:00

27 lines
374 B
Makefile

MODULE := engines/made
MODULE_OBJS := \
console.o \
database.o \
detection.o \
graphics.o \
made.o \
music.o \
pmvplayer.o \
redreader.o \
resource.o \
screen.o \
screenfx.o \
script.o \
scriptfuncs.o \
sound.o
# This module can be built as a plugin
ifeq ($(ENABLE_MADE), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk