blob: 8b3287d5d74e20e078133a6068f83c83be3ef938 (
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
|
MODULE := engines/lastexpress
MODULE_OBJS := \
data/animation.o \
data/archive.o \
data/background.o \
data/cursor.o \
data/font.o \
data/scene.o \
data/sequence.o \
data/snd.o \
data/subtitle.o \
entities/entity.o \
entities/abbot.o \
entities/alexei.o \
entities/alouan.o \
entities/anna.o \
entities/august.o \
entities/boutarel.o \
entities/chapters.o \
entities/cooks.o \
entities/coudert.o \
entities/entity39.o \
entities/francois.o \
entities/gendarmes.o \
entities/hadija.o \
entities/ivo.o \
entities/kahina.o \
entities/kronos.o \
entities/mahmud.o \
entities/max.o \
entities/mertens.o \
entities/milos.o \
entities/mmeboutarel.o \
entities/pascale.o \
entities/rebecca.o \
entities/salko.o \
entities/servers0.o \
entities/servers1.o \
entities/sophie.o \
entities/tables.o \
entities/tatiana.o \
entities/train.o \
entities/vassili.o \
entities/verges.o \
entities/vesna.o \
entities/yasmin.o \
fight/fight.o \
fight/fighter.o \
fight/fighter_anna.o \
fight/fighter_ivo.o \
fight/fighter_milos.o \
fight/fighter_salko.o \
fight/fighter_vesna.o \
game/action.o \
game/beetle.o \
game/entities.o \
game/inventory.o \
game/logic.o \
game/object.o \
game/savegame.o \
game/savepoint.o \
game/scenes.o \
game/state.o \
menu/clock.o \
menu/menu.o \
menu/trainline.o \
sound/entry.o \
sound/queue.o \
sound/sound.o \
debug.o \
detection.o \
graphics.o \
lastexpress.o \
resource.o
# This module can be built as a plugin
ifeq ($(ENABLE_LASTEXPRESS), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk
|