mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-17 23:27:37 +00:00
28 lines
381 B
Makefile
28 lines
381 B
Makefile
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 \
|
|
roq.o \
|
|
saveload.o \
|
|
script.o \
|
|
stuffit.o \
|
|
vdx.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_GROOVIE), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|