blob: b9a82fa415fa178ca50b8c5593d15bf160e1f7ab (
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/fullpipe
MODULE_OBJS = \
behavior.o \
console.o \
detection.o \
floaters.o \
fullpipe.o \
gameloader.o \
gfx.o \
init.o \
input.o \
interaction.o \
inventory.o \
lift.o \
messagehandlers.o \
messages.o \
modal.o \
motion.o \
ngiarchive.o \
scene.o \
scenes.o \
sound.o \
stateloader.o \
statics.o \
utils.o \
scenes/scene01.o \
scenes/scene02.o \
scenes/scene03.o \
scenes/scene04.o \
scenes/scene05.o \
scenes/scene06.o \
scenes/scene07.o \
scenes/scene08.o \
scenes/scene10.o \
scenes/scene11.o \
scenes/scene12.o \
scenes/scene13.o \
scenes/scene14.o \
scenes/scene15.o \
scenes/scene16.o \
scenes/scene24.o \
scenes/sceneDbg.o \
scenes/sceneIntro.o
# This module can be built as a plugin
ifeq ($(ENABLE_FULLPIPE), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk
|