mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-08 02:42:34 +00:00
e537ce48bb
svn-id: r50322
21 lines
311 B
Makefile
21 lines
311 B
Makefile
MODULE := engines/testbed
|
|
|
|
MODULE_OBJS := \
|
|
detection.o \
|
|
fs.o \
|
|
graphics.o \
|
|
savegame.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
|