blob: 2f4982f9f874d9b3ac472f86853d6995a036cfe9 (
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
|
MODULE := engines/mads
MODULE_OBJS := \
nebular/dialogs_nebular.o \
nebular/game_nebular.o \
nebular/globals_nebular.o \
nebular/sound_nebular.o \
nebular/nebular_scenes.o \
nebular/nebular_scenes8.o \
action.o \
animation.o \
assets.o \
compression.o \
debugger.o \
detection.o \
dialogs.o \
events.o \
font.o \
game.o \
game_data.o \
graphics.o \
hotspots.o \
interface.o \
mads.o \
messages.o \
msurface.o \
palette.o \
player.o \
resources.o \
scene.o \
scene_data.o \
sequence.o \
sound.o \
sprites.o \
user_interface.o
# This module can be built as a plugin
ifeq ($(ENABLE_MADS), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk
|