blob: 0d17d0b24915d37a99534d76c1b4226cd27856ef (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
MODULE := engines/sherlock
MODULE_OBJS = \
scalpel/scalpel.o \
scalpel/3do/movie_decoder.o \
scalpel/3do/scalpel_3do_screen.o \
scalpel/drivers/adlib.o \
scalpel/drivers/mt32.o \
scalpel/tsage/logo.o \
scalpel/tsage/resources.o \
scalpel/scalpel_darts.o \
scalpel/scalpel_debugger.o \
scalpel/scalpel_fixed_text.o \
scalpel/scalpel_inventory.o \
scalpel/scalpel_journal.o \
scalpel/scalpel_map.o \
scalpel/scalpel_people.o \
scalpel/scalpel_saveload.o \
scalpel/scalpel_scene.o \
scalpel/scalpel_screen.o \
scalpel/scalpel_talk.o \
scalpel/scalpel_user_interface.o \
scalpel/settings.o \
tattoo/tattoo.o \
tattoo/tattoo_darts.o \
tattoo/tattoo_debugger.o \
tattoo/tattoo_fixed_text.o \
tattoo/tattoo_inventory.o \
tattoo/tattoo_journal.o \
tattoo/tattoo_map.o \
tattoo/tattoo_people.o \
tattoo/tattoo_resources.o \
tattoo/tattoo_scene.o \
tattoo/tattoo_screen.o \
tattoo/tattoo_talk.o \
tattoo/tattoo_user_interface.o \
tattoo/widget_base.o \
tattoo/widget_credits.o \
tattoo/widget_files.o \
tattoo/widget_foolscap.o \
tattoo/widget_inventory.o \
tattoo/widget_lab.o \
tattoo/widget_options.o \
tattoo/widget_password.o \
tattoo/widget_quit.o \
tattoo/widget_talk.o \
tattoo/widget_text.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
|