mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-01 15:55:45 +00:00
21 lines
307 B
Makefile
21 lines
307 B
Makefile
MODULE := engines/cryo
|
|
|
|
MODULE_OBJS = \
|
|
clerror.o \
|
|
clhnm.o \
|
|
clsoundgroup.o \
|
|
clsoundraw.o \
|
|
cryolib.o \
|
|
eden.o \
|
|
cryo.o \
|
|
detection.o \
|
|
staticdata.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_CRYO), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|