aboutsummaryrefslogtreecommitdiff
path: root/engines/sword1/module.mk
blob: f101be6cef0ce3a288046bd469944b35e8aeb95f (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/sword1

MODULE_OBJS := \
	animation.o \
	control.o \
	credits.o \
	debug.o \
	detection.o \
	eventman.o \
	logic.o \
	memman.o \
	menu.o \
	mouse.o \
	music.o \
	objectman.o \
	resman.o \
	router.o \
	screen.o \
	sound.o \
	staticres.o \
	sword1.o \
	text.o

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

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