Initial commit
This commit is contained in:
46
engines/myst3/module.mk
Normal file
46
engines/myst3/module.mk
Normal file
@@ -0,0 +1,46 @@
|
||||
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
|
||||
Reference in New Issue
Block a user