scummvm/video/module.mk
Bastien Bouclet ad835de85d VIDEO: Implement Bink seeking using subclassing
So that the code is easier to merge with ScummVM
2012-01-05 09:33:05 +01:00

14 lines
196 B
Makefile

MODULE := video
MODULE_OBJS := \
mpeg_player.o \
video_decoder.o
ifdef USE_BINK
MODULE_OBJS += \
bink_decoder.o \
bink_decoder_seek.o
endif
# Include common rules
include $(srcdir)/rules.mk