blob: d904e6c4c3c633175274197589e62eab6fb82cef (
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
|
MODULE := engines/sludge
MODULE_OBJS := \
backdrop.o \
bg_effects.o \
builtin.o \
console.o \
cursors.o \
detection.o \
event.o \
fileset.o \
floor.o \
freeze.o \
fonttext.o \
function.o \
graphics.o \
hsi.o \
imgloader.o \
language.o \
loadsave.o \
main_loop.o \
moreio.o \
movie.o \
newfatal.o \
objtypes.o \
people.o \
region.o \
savedata.o \
sludge.o \
sludger.o \
sound.o \
speech.o \
sprbanks.o \
sprites.o \
statusba.o \
thumbnail.o \
timing.o \
transition.o \
utf8.o \
variable.o \
zbuffer.o \
MODULE_DIRS += \
engines/sludge
# This module can be built as a plugin
ifeq ($(ENABLE_SLUDGE), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk
|