aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision/module.mk
blob: 3d672d96bcc22bea59293ffcd74f95ec1cf0acba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
MODULE := engines/zvision
 
MODULE_OBJS := \
	actions.o \
	console.o \
	detection.o \
	events.o \
	graphics.o \
	image.o \
	lzss_read_stream.o \
	scr_file_handling.o \
	script_manager.o \
	scripts.o \
	single_value_container.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