mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-07 11:27:44 +00:00
25 lines
351 B
Makefile
25 lines
351 B
Makefile
MODULE := engines/testbed
|
|
|
|
MODULE_OBJS := \
|
|
config.o \
|
|
detection.o \
|
|
events.o \
|
|
fs.o \
|
|
graphics.o \
|
|
misc.o \
|
|
savegame.o \
|
|
sound.o \
|
|
testbed.o \
|
|
testsuite.o
|
|
|
|
MODULE_DIRS += \
|
|
engines/testbed
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_TESTBED), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|