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

MODULE_OBJS := \
	animation.o \
	control.o \
	credits.o \
	debug.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
ifdef BUILD_PLUGINS
PLUGIN := 1
endif

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