mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-06 02:10:28 +00:00
20 lines
300 B
Makefile
20 lines
300 B
Makefile
MODULE := engines/chewy
|
|
|
|
MODULE_OBJS = \
|
|
chewy.o \
|
|
console.o \
|
|
detection.o \
|
|
events.o \
|
|
graphics.o \
|
|
resource.o \
|
|
sound.o \
|
|
video/cfo_decoder.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_CHEWY), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|