mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-21 09:21:08 +00:00
17 lines
265 B
Makefile
17 lines
265 B
Makefile
MODULE := engines/composer
|
|
|
|
MODULE_OBJS = \
|
|
composer.o \
|
|
detection.o \
|
|
graphics.o \
|
|
resource.o \
|
|
scripting.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_COMPOSER), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|