mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-04 16:26:53 +00:00
0119a659b5
Since CINE uses Debug Channels, this allows for the interactive setting of debugflags as well as providing a base for adding further debugging commands. svn-id: r54115
33 lines
428 B
Makefile
33 lines
428 B
Makefile
MODULE := engines/cine
|
|
|
|
MODULE_OBJS := \
|
|
anim.o \
|
|
bg.o \
|
|
bg_list.o \
|
|
console.o \
|
|
cine.o \
|
|
detection.o \
|
|
gfx.o \
|
|
main_loop.o \
|
|
msg.o \
|
|
object.o \
|
|
pal.o \
|
|
part.o \
|
|
prc.o \
|
|
rel.o \
|
|
saveload.o \
|
|
script_fw.o \
|
|
script_os.o \
|
|
sound.o \
|
|
texte.o \
|
|
unpack.o \
|
|
various.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_CINE), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|