mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-28 12:46:56 +00:00
695fc035d4
- Move menu handling to its own file - Implement modal confirmation dialogs - Properly implement quitting from the main menu
32 lines
457 B
Makefile
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
|