scummvm/engines/mohawk/module.mk
Matthew Hoops 07ea74d37b MOHAWK: Refactor cursor handling
Cursor handling has now been moved to a new CursorManager class (which is subclassed for Myst/Riven) from the GraphicsManager classes. This will be needed for Living Books which will have a class for Windows and Mac cursors (coming soon!).

svn-id: r54469
2010-11-25 04:49:11 +00:00

34 lines
503 B
Makefile

MODULE := engines/mohawk
MODULE_OBJS = \
bitmap.o \
console.o \
cursors.o \
detection.o \
dialogs.o \
graphics.o \
livingbooks.o \
mohawk.o \
myst.o \
myst_vars.o \
myst_saveload.o \
myst_scripts.o \
resource.o \
resource_cache.o \
riven.o \
riven_external.o \
riven_saveload.o \
riven_scripts.o \
riven_vars.o \
sound.o \
video.o
# This module can be built as a plugin
ifeq ($(ENABLE_MOHAWK), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk