aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/module.mk
blob: c2e269e8c1b032524c29ae59c000b8ed0ddb01ba (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
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_scenes1.o \
	nebular/nebular_scenes2.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 \
	hotspots.o \
	inventory.o \
	mads.o \
	messages.o \
	msurface.o \
	palette.o \
	player.o \
	resources.o \
	scene.o \
	scene_data.o \
	screen.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