https://github.com/scummvm/scummvm
Raw File
Tip revision: 1ae1d4d8fd1af7fce2e28040ef10c400df5eb9ca authored by Eugene Sandulenko on 04 January 2024, 23:13:57 UTC
DOCS: Fix formatting in Controls table in iOS documentation
Tip revision: 1ae1d4d
module.mk
MODULE := engines/myst3

MODULE_OBJS := \
	ambient.o \
	archive.o \
	console.o \
	cursor.o \
	database.o \
	effects.o \
	gfx.o \
	gfx_opengl.o \
	gfx_opengl_shaders.o \
	gfx_opengl_texture.o \
	hotspot.o \
	inventory.o \
	menu.o \
	metaengine.o \
	movie.o \
	myst3.o \
	node.o \
	nodecube.o \
	nodeframe.o \
	puzzles.o \
	scene.o \
	script.o \
	sound.o \
	state.o \
	subtitles.o \
	transition.o

ifdef USE_TINYGL
MODULE_OBJS += \
	gfx_tinygl.o \
	gfx_tinygl_texture.o
endif

# This module can be built as a plugin
ifeq ($(ENABLE_MYST3), DYNAMIC_PLUGIN)
PLUGIN := 1
endif

# Include common rules
include $(srcdir)/rules.mk

# Detection objects
DETECT_OBJS += $(MODULE)/detection.o
back to top