mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-27 05:32:45 +00:00
21 lines
297 B
Makefile
21 lines
297 B
Makefile
MODULE := engines/cryo
|
|
|
|
MODULE_OBJS = \
|
|
cryo.o \
|
|
cryolib.o \
|
|
debugger.o \
|
|
detection.o \
|
|
eden.o \
|
|
graphics.o \
|
|
resource.o \
|
|
sound.o \
|
|
video.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_CRYO), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|