mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-04 17:29:11 +00:00

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
34 lines
503 B
Makefile
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
|