mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-23 10:19:27 +00:00
40 lines
669 B
Makefile
40 lines
669 B
Makefile
MODULE := engines/zvision
|
|
|
|
MODULE_OBJS := \
|
|
action_node.o \
|
|
actions.o \
|
|
animation.o \
|
|
clock.o \
|
|
console.o \
|
|
control.o \
|
|
cursor.o \
|
|
cursor_manager.o \
|
|
detection.o \
|
|
events.o \
|
|
lever_control.o \
|
|
lzss_read_stream.o \
|
|
push_toggle_control.o \
|
|
render_manager.o \
|
|
render_table.o \
|
|
rlf_animation.o \
|
|
scr_file_handling.o \
|
|
script_manager.o \
|
|
scripts.o \
|
|
single_value_container.o \
|
|
utility.o \
|
|
video.o \
|
|
zvision.o \
|
|
zfs_archive.o \
|
|
zork_avi_decoder.o \
|
|
zork_raw.o
|
|
|
|
MODULE_DIRS += \
|
|
engines/zvision
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_ZVISION), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk |