aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/module.mk
blob: 414dabf42963d69b3e5196400392b7a373e1ced2 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
MODULE := engines/sherlock

MODULE_OBJS = \
	scalpel/darts.o \
	scalpel/scalpel.o \
	scalpel/3do/movie_decoder.o \
	scalpel/drivers/adlib.o \
	scalpel/drivers/mt32.o \
	scalpel/tsage/logo.o \
	scalpel/tsage/resources.o \
	scalpel/scalpel_map.o \
	scalpel/scalpel_people.o \
	scalpel/scalpel_scene.o \
	scalpel/scalpel_talk.o \
	scalpel/scalpel_user_interface.o \
	scalpel/settings.o \
	tattoo/tattoo.o \
	tattoo/tattoo_map.o \
	tattoo/tattoo_people.o \
	tattoo/tattoo_resources.o \
	tattoo/tattoo_scene.o \
	tattoo/tattoo_talk.o \
	tattoo/tattoo_user_interface.o \
	tattoo/widget_base.o \
	tattoo/widget_tooltip.o \
	tattoo/widget_verbs.o \
	animation.o \
	debugger.o \
	detection.o \
	events.o \
	fixed_text.o \
	fonts.o \
	image_file.o \
	inventory.o \
	journal.o \
	map.o \
	music.o \
	objects.o \
	people.o \
	resources.o \
	saveload.o \
	scene.o \
	screen.o \
	sherlock.o \
	sound.o \
	surface.o \
	talk.o \
	user_interface.o

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

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