blob: 13d815e366cd50b59b574788e13076db9665ecc3 (
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
MODULE := engines/sci
MODULE_OBJS := \
console.o \
decompressor.o \
detection.o \
event.o \
resource.o \
sci.o \
vocabulary.o \
engine/game.o \
engine/gc.o \
engine/grammar.o \
engine/kernel.o \
engine/kevent.o \
engine/kfile.o \
engine/kgraphics.o \
engine/klists.o \
engine/kmath.o \
engine/kmenu.o \
engine/kmisc.o \
engine/kmovement.o \
engine/kpathing.o \
engine/kscripts.o \
engine/ksound.o \
engine/kstring.o \
engine/message.o \
engine/said.o \
engine/savegame.o \
engine/script.o \
engine/scriptdebug.o \
engine/selector.o \
engine/seg_manager.o \
engine/segment.o \
engine/static_selectors.o \
engine/state.o \
engine/vm.o \
gfx/gfx_driver.o \
gfx/gfx_gui.o \
gfx/gfx_pixmap_scale.o \
gfx/gfx_resmgr.o \
gfx/gfx_resource.o \
gfx/gfx_support.o \
gfx/gfx_tools.o \
gfx/gfx_widgets.o \
gfx/menubar.o \
gfx/operations.o \
gfx/palette.o \
gui/gui.o \
gui/gui_animate.o \
gui/gui_controls.o \
gui/gui_cursor.o \
gui/gui_font.o \
gui/gui_gfx.o \
gui/gui_menu.o \
gui/gui_palette.o \
gui/gui_picture.o \
gui/gui_portrait.o \
gui/gui_screen.o \
gui/gui_text.o \
gui/gui_transitions.o \
gui/gui_view.o \
gui/gui_windowmgr.o \
gui32/gui32.o \
gui32/font.o \
gui32/res_font.o \
gui32/res_pal.o \
gui32/res_pic.o \
gui32/res_view.o \
sfx/audio.o \
sfx/midiparser.o \
sfx/music.o \
sfx/soundcmd.o \
sfx/iterator/core.o \
sfx/iterator/iterator.o \
sfx/iterator/songlib.o \
sfx/seq/gm.o \
sfx/seq/instrument-map.o \
sfx/seq/map-mt32-to-gm.o \
sfx/softseq/adlib.o \
sfx/softseq/amiga.o \
sfx/softseq/pcjr.o \
video/seq_decoder.o \
video/vmd_decoder.o
ifdef ENABLE_SCI32
MODULE_OBJS += \
engine/kernel32.o
endif
# This module can be built as a plugin
ifeq ($(ENABLE_SCI), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk
|