blob: 9d115b8b6edec0107ff29dd3cc3f28fe04015c47 (
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
|
MODULE := engines/mads
MODULE_OBJS := \
nebular/dialogs_nebular.o \
nebular/game_nebular.o \
nebular/sound_nebular.o \
compression.o \
detection.o \
events.o \
font.o \
game.o \
graphics.o \
mads.o \
msprite.o \
msurface.o \
palette.o \
resources.o \
sound.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
|