scummvm/kyra/module.mk
Torbjörn Andersson 8fc913c21d Moved the sequence player into its own class. I'm sure this could be
cleaned up a bit, but it'll do for now.

svn-id: r18946
2005-10-06 11:57:02 +00:00

25 lines
370 B
Makefile

MODULE := kyra
MODULE_OBJS := \
kyra/kyra.o \
kyra/resource.o \
kyra/screen.o \
kyra/script_v1.o \
kyra/script.o \
kyra/seqplayer.o \
kyra/sound.o \
kyra/staticres.o \
kyra/sprites.o \
kyra/wsamovie.o
MODULE_DIRS += \
kyra
# This module can be built as a plugin
ifdef BUILD_PLUGINS
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/common.rules