scummvm/engines/twine/module.mk
Martin Gerhardy a0ea8dc7f3 TWINE: renamed class to Movies
as it now also playing smacker videos for lba2
2021-09-10 19:20:56 +02:00

63 lines
1.0 KiB
Makefile

MODULE := engines/twine
MODULE_OBJS := \
audio/music.o \
audio/sound.o \
\
debugger/console.o \
debugger/debug.o \
debugger/debug_grid.o \
debugger/debug_scene.o \
\
menu/interface.o \
menu/menu.o \
menu/menuoptions.o \
\
parser/anim.o \
parser/blocklibrary.o \
parser/body.o \
parser/entity.o \
parser/holomap.o \
parser/parser.o \
parser/sprite.o \
parser/text.o \
\
renderer/redraw.o \
renderer/renderer.o \
renderer/screens.o \
\
scene/actor.o \
scene/animations.o \
scene/collision.o \
scene/extra.o \
scene/gamestate.o \
scene/grid.o \
scene/movements.o \
scene/scene.o \
\
script/script_life_v1.o \
script/script_move_v1.o \
\
resources/hqr.o \
resources/lzss.o \
resources/resources.o \
\
movies.o \
holomap.o \
input.o \
metaengine.o \
shared.o \
text.o \
twine.o
# This module can be built as a plugin
ifeq ($(ENABLE_TWINE), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk
# Detection objects
DETECT_OBJS += $(MODULE)/detection.o