blob: 9da5a82de2e377c83eab5098820206d3c390c907 (
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
MODULE := engines/gob
MODULE_OBJS := \
anifile.o \
aniobject.o \
cheater.o \
cheater_geisha.o \
cmpfile.o \
console.o \
dataio.o \
databases.o \
dbase.o \
decfile.o \
detection.o \
draw.o \
draw_v1.o \
draw_v2.o \
draw_bargon.o \
draw_fascin.o \
draw_playtoons.o \
expression.o \
game.o \
global.o \
gob.o \
goblin.o \
goblin_v1.o \
goblin_v2.o \
goblin_v3.o \
goblin_v4.o \
hotspots.o \
iniconfig.o \
init.o \
init_v1.o \
init_geisha.o \
init_v2.o \
init_fascin.o \
init_v3.o \
init_v4.o \
init_v6.o \
init_v7.o \
inter.o \
inter_v1.o \
inter_geisha.o \
inter_v2.o \
inter_bargon.o \
inter_fascin.o \
inter_inca2.o \
inter_playtoons.o \
inter_v3.o \
inter_v4.o \
inter_v5.o \
inter_v6.o \
inter_v7.o \
map.o \
map_v1.o \
map_v2.o \
mult.o \
mult_v1.o \
mult_v2.o \
palanim.o \
resources.o \
rxyfile.o \
scenery.o \
scenery_v1.o \
scenery_v2.o \
script.o \
surface.o \
totfile.o \
util.o \
variables.o \
video.o \
video_v1.o \
video_v2.o \
video_v6.o \
videoplayer.o \
demos/demoplayer.o \
demos/scnplayer.o \
demos/batplayer.o \
minigames/geisha/evilfish.o \
minigames/geisha/oko.o \
minigames/geisha/meter.o \
minigames/geisha/diving.o \
minigames/geisha/penetration.o \
save/savefile.o \
save/savehandler.o \
save/saveload.o \
save/saveload_v2.o \
save/saveload_v3.o \
save/saveload_v4.o \
save/saveload_v6.o \
save/saveload_v7.o \
save/saveload_geisha.o \
save/saveload_fascin.o \
save/saveload_inca2.o \
save/saveload_playtoons.o \
save/saveconverter.o \
save/saveconverter_v2.o \
save/saveconverter_v3.o \
save/saveconverter_v4.o \
sound/sound.o \
sound/sounddesc.o \
sound/pcspeaker.o \
sound/adlib.o \
sound/infogrames.o \
sound/protracker.o \
sound/soundmixer.o \
sound/soundblaster.o \
sound/cdrom.o \
sound/bgatmosphere.o
# This module can be built as a plugin
ifeq ($(ENABLE_GOB), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk
|