scummvm/engines/sword1/module.mk
Filippos Karapetis 781d7da6b1 Applied my patch for the BS1/2 video player
- Support for the MPEG2 videos in BS1/2 has been dropped. The MPEG2 videos were lossy, and support for them complicated the code a lot.
- Support for the non-existing enhanced MPEG cutscene packs for BS1 has been dropped. As a consequence, the credits player and the splitted audio stream players used for these packs has been removed
- The original Smacker videos for both games are now supported, using our Smacker player (which is based off publically available specs and FFMPEG)
- The animations now use the common video player code. Both the Smacker videos and our DXA video packs are supported

svn-id: r38236
2009-02-15 13:29:48 +00:00

30 lines
412 B
Makefile

MODULE := engines/sword1
MODULE_OBJS := \
animation.o \
control.o \
debug.o \
detection.o \
eventman.o \
logic.o \
memman.o \
menu.o \
mouse.o \
music.o \
objectman.o \
resman.o \
router.o \
screen.o \
sound.o \
staticres.o \
sword1.o \
text.o
# This module can be built as a plugin
ifeq ($(ENABLE_SWORD1), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk