scummvm/engines/myst3/module.mk
Bastien Bouclet 695fc035d4 MYST3: Menu WIP
- Move menu handling to its own file
- Implement modal confirmation dialogs
- Properly implement quitting from the main menu
2012-01-11 14:05:38 +01:00

32 lines
457 B
Makefile

MODULE := engines/myst3
MODULE_OBJS := \
archive.o \
console.o \
cursor.o \
database.o \
detection.o \
directoryentry.o \
directorysubentry.o \
gfx.o \
hotspot.o \
inventory.o \
menu.o \
movie.o \
myst3.o \
node.o \
nodecube.o \
nodeframe.o \
puzzles.o \
scene.o \
script.o \
variables.o
# This module can be built as a plugin
ifeq ($(ENABLE_MYST3), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk