blob: a172e4b939d33e869236604e5601f16aa46d4f87 (
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
|
MODULE := engines/draci
MODULE_OBJS := \
animation.o \
barchive.o \
detection.o \
draci.o \
font.o \
game.o \
mouse.o \
music.o \
saveload.o \
screen.o \
script.o \
sound.o \
sprite.o \
surface.o \
walking.o
MODULE_DIRS += \
engines/draci
# This module can be built as a plugin
ifeq ($(ENABLE_DRACI), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk
|