blob: 667ba4efffd7bcdf89a3f43eb54baec7ecdd2008 (
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
|
MODULE := engines/pegasus
MODULE_OBJS = \
compass.o \
console.o \
cursor.o \
detection.o \
elements.o \
energymonitor.o \
fader.o \
gamestate.o \
graphics.o \
hotspot.o \
input.o \
interface.o \
menu.o \
movie.o \
notification.o \
pegasus.o \
sound.o \
surface.o \
timers.o \
transition.o \
util.o \
ai/ai_action.o \
ai/ai_area.o \
ai/ai_condition.o \
ai/ai_rule.o \
items/inventory.o \
items/inventorypicture.o \
items/item.o \
items/itemlist.o \
items/biochips/aichip.o \
items/biochips/biochipitem.o \
items/biochips/opticalchip.o \
items/biochips/pegasuschip.o \
items/biochips/retscanchip.o \
items/biochips/shieldchip.o \
items/inventory/airmask.o \
items/inventory/gascanister.o \
items/inventory/inventoryitem.o \
items/inventory/keycard.o \
neighborhood/door.o \
neighborhood/exit.o \
neighborhood/extra.o \
neighborhood/hotspotinfo.o \
neighborhood/neighborhood.o \
neighborhood/prehistoric.o \
neighborhood/spot.o \
neighborhood/turn.o \
neighborhood/view.o \
neighborhood/zoom.o
# This module can be built as a plugin
ifeq ($(ENABLE_PEGASUS), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk
|