scummvm/engines/trecision/module.mk
Filippos Karapetis 32fb690aae TRECISION: Add support for audio in Amiga video
The audio is in raw format, like the rest of the sounds in the Amiga
port.

Overall:
- A new class has been created, NightlongVideoDecoder, which
  encapsulates the PC and Amiga video playing functionality
- The AnimManager class has been moved into animmanager.*
- The AnimType class has been moved from anim.* to animtype.*
2022-01-24 00:24:28 +02:00

36 lines
550 B
Makefile

MODULE := engines/trecision
MODULE_OBJS = \
console.o \
actor.o \
animmanager.o \
animtype.o \
dialog.o \
fastfile.o \
graphics.o \
inventory.o \
logic.o \
metaengine.o \
pathfinding3d.o \
renderer3d.o \
resource.o \
sound.o \
saveload.o \
scheduler.o \
script.o \
struct.o \
text.o \
trecision.o \
utils.o \
video.o
# This module can be built as a plugin
ifeq ($(ENABLE_TRECISION), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk
# Detection objects
DETECT_OBJS += $(MODULE)/detection.o