mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 12:39:56 +00:00
3d961469fd
Since DRACI uses Debug Channels, this allows for the interactive setting of debugflags as well as providing a base for adding further debugging commands. svn-id: r54116
28 lines
389 B
Makefile
28 lines
389 B
Makefile
MODULE := engines/draci
|
|
|
|
MODULE_OBJS := \
|
|
animation.o \
|
|
barchive.o \
|
|
console.o \
|
|
detection.o \
|
|
draci.o \
|
|
font.o \
|
|
game.o \
|
|
mouse.o \
|
|
music.o \
|
|
saveload.o \
|
|
screen.o \
|
|
script.o \
|
|
sound.o \
|
|
sprite.o \
|
|
surface.o \
|
|
walking.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_DRACI), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|