mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-06 02:46:49 +00:00
a0ea8dc7f3
as it now also playing smacker videos for lba2
63 lines
1.0 KiB
Makefile
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
|