aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/module.mk
blob: 0c74193dacbc5114dfee3b02fbd668b6774dbdae (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
129
130
MODULE := engines/wintermute
 
MODULE_OBJS := \
	ad/AdActor.o \
	ad/AdEntity.o \
	ad/AdGame.o \
	ad/AdInventory.o \
	ad/AdInventoryBox.o \
	ad/AdItem.o \
	ad/AdLayer.o \
	ad/AdNodeState.o \
	ad/AdObject.o \
	ad/AdPath.o \
	ad/AdPathPoint.o \
	ad/AdRegion.o \
	ad/AdResponse.o \
	ad/AdResponseBox.o \
	ad/AdResponseContext.o \
	ad/AdRotLevel.o \
	ad/AdScaleLevel.o \
	ad/AdScene.o \
	ad/AdSceneNode.o \
	ad/AdSceneState.o \
	ad/AdSentence.o \
	ad/AdSpriteSet.o \
	ad/AdTalkDef.o \
	ad/AdTalkHolder.o \
	ad/AdTalkNode.o \
	ad/AdWaypointGroup.o \
	base/scriptables/ScEngine.o \
	base/scriptables/ScScript.o \
	base/scriptables/ScStack.o \
	base/scriptables/ScValue.o \
	base/scriptables/SXArray.o \
	base/scriptables/SXDate.o \
	base/scriptables/SXFile.o \
	base/scriptables/SXMath.o \
	base/scriptables/SxObject.o \
	base/scriptables/SXMemBuffer.o \
	base/scriptables/SXString.o \
	base/file/BDiskFile.o \
	base/file/BFile.o \
	base/file/BSaveThumbFile.o \
	base/file/BPkgFile.o \
	base/font/BFontBitmap.o \
	base/font/BFontTT.o \
	base/font/BFont.o \
	base/font/BFontStorage.o \
	base/gfx/base_image.o \
	base/gfx/base_renderer.o \
	base/gfx/base_surface.o \
	base/gfx/osystem/base_surface_osystem.o \
	base/gfx/osystem/base_render_osystem.o \
	base/particles/PartParticle.o \
	base/particles/PartEmitter.o \
	base/particles/PartForce.o \
	base/BActiveRect.o \
	base/BBase.o \
	base/BDebugger.o \
	base/BDynBuffer.o \
	base/BFader.o \
	base/BFileEntry.o \
	base/BFileManager.o \
	base/BGame.o \
	base/BFrame.o \
	base/BKeyboardState.o \
	base/BNamedObject.o \
	base/BObject.o \
	base/BPackage.o \
	base/BParser.o \
	base/BPersistMgr.o \
	base/BPoint.o \
	base/BQuickMsg.o \
	base/BRegion.o \
	base/BRegistry.o \
	base/BResources.o \
	base/BSaveThumbHelper.o \
	base/BScriptable.o \
	base/BScriptHolder.o \
	base/BSound.o \
	base/BSoundBuffer.o \
	base/BSoundMgr.o \
	base/BSprite.o \
	base/BStringTable.o \
	base/BSubFrame.o \
	base/BSurfaceStorage.o \
	base/BTransitionMgr.o \
	base/BViewport.o \
	detection.o \
	graphics/transparentSurface.o \
	graphics/tga.o \
	math/MathUtil.o \
	math/Matrix4.o \
	math/Vector2.o \
	PlatformSDL.o \
	system/SysClass.o \
	system/SysClassRegistry.o \
	system/SysInstance.o \
	tinyxml/tinyxml.o \
	tinyxml/tinystr.o \
	tinyxml/tinyxmlparser.o \
	tinyxml/tinyxmlerror.o \
	ui/UIButton.o \
	ui/UIEdit.o \
	ui/UIEntity.o \
	ui/UIObject.o \
	ui/UIText.o \
	ui/UITiledImage.o \
	ui/UIWindow.o \
	utils/ConvertUTF.o \
	utils/crc.o \
	utils/PathUtil.o \
	utils/StringUtil.o \
	utils/utils.o \
	video/VidPlayer.o \
	video/VidTheoraPlayer.o \
	video/decoders/theora_decoder.o \
	wintermute.o \
	persistent.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