mirror of
https://github.com/libretro/scummvm.git
synced 2024-11-30 12:50:51 +00:00
c76f0c6c02
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
27 lines
374 B
Makefile
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
|