aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/module.mk
blob: 592c0cb6a306598dafe1f5ae0a6eb8af36b760ce (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
31
32
MODULE := engines/parallaction

MODULE_OBJS := \
	animation.o \
	archive.o \
	callables.o \
	commands.o \
	debug.o \
	detection.o \
	dialogue.o \
	disk.o \
	font.o \
	graphics.o \
	intro.o \
	inventory.o \
	location.o \
	menu.o \
	parser.o \
	parallaction.o \
	saveload.o \
	sound.o \
	staticres.o \
	walk.o \
	zone.o

# This module can be built as a plugin
ifdef BUILD_PLUGINS
PLUGIN := 1
endif

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