blob: 84d6222c59f69e6588cc15afda430a04b7e1d11e (
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
|
MODULE := engines/groovie
MODULE_OBJS := \
cell.o \
cursor.o \
debug.o \
detection.o \
font.o \
graphics.o \
groovie.o \
lzss.o \
music.o \
player.o \
resource.o \
saveload.o \
script.o \
stuffit.o \
vdx.o
ifdef ENABLE_GROOVIE2
MODULE_OBJS += \
roq.o
endif
# This module can be built as a plugin
ifeq ($(ENABLE_GROOVIE), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk
|