blob: 3dc00b5a331b7e016735f46622567f7322c164ed (
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
118
119
120
121
122
123
124
125
126
127
128
|
MODULE := engines/wintermute
MODULE_OBJS := \
scriptables/ScEngine.o \
scriptables/ScScript.o \
scriptables/ScStack.o \
scriptables/ScValue.o \
scriptables/SXArray.o \
scriptables/SXDate.o \
scriptables/SXFile.o \
scriptables/SXMath.o \
scriptables/SxObject.o \
scriptables/SXMemBuffer.o \
scriptables/SXStore.o \
scriptables/SXString.o \
AdActor.o \
AdActorDir.o \
AdEntity.o \
AdGame.o \
AdInventory.o \
AdInventoryBox.o \
AdItem.o \
AdLayer.o \
AdNodeState.o \
AdObject.o \
AdPath.o \
AdPathPoint.o \
AdRegion.o \
AdResponse.o \
AdResponseBox.o \
AdResponseContext.o \
AdRotLevel.o \
AdScaleLevel.o \
AdScene.o \
AdSceneNode.o \
AdSceneState.o \
AdSentence.o \
AdSpriteSet.o \
AdTalkDef.o \
AdTalkHolder.o \
AdTalkNode.o \
AdWaypointGroup.o \
BActiveRect.o \
BBase.o \
BDebugger.o \
BDiskFile.o \
BDynBuffer.o \
BFader.o \
BFile.o \
BFileEntry.o \
BFileManager.o \
BGame.o \
BFont.o \
BFontBitmap.o \
BFontStorage.o \
BFontTT.o \
BFrame.o \
BImage.o \
BKeyboardState.o \
BNamedObject.o \
BObject.o \
BPackage.o \
BParser.o \
BPersistMgr.o \
BPkgFile.o \
BPoint.o \
BQuickMsg.o \
BRegion.o \
BRegistry.o \
BRenderer.o \
BRenderSDL.o \
BResources.o \
BResourceFile.o \
BSaveThumbFile.o \
BSaveThumbHelper.o \
BScriptable.o \
BScriptHolder.o \
BSound.o \
BSoundBuffer.o \
BSoundMgr.o \
BSprite.o \
BStringTable.o \
BSubFrame.o \
BSurface.o \
BSurfaceSDL.o \
BSurfaceStorage.o \
BTransitionMgr.o \
BViewport.o \
ConvertUTF.o \
crc.o \
detection.o \
FontGlyphCache.o \
MathUtil.o \
Matrix4.o \
PathUtil.o \
PartParticle.o \
PartEmitter.o \
PartForce.o \
PlatformSDL.o \
StringUtil.o \
SysClass.o \
SysClassRegistry.o \
SysInstance.o \
tinyxml.o \
tinystr.o \
tinyxmlparser.o \
tinyxmlerror.o \
UIButton.o \
UIEdit.o \
UIEntity.o \
UIObject.o \
UIText.o \
UITiledImage.o \
UIWindow.o \
utils.o \
Vector2.o \
wintermute.o
MODULE_DIRS += \
engines/wintermute
# This module can be built as a plugin
ifeq ($(ENABLE_WINTERMUTE), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk
|