mirror of
https://github.com/libretro/scummvm.git
synced 2024-11-30 12:50:51 +00:00
a16832760b
2. Modified code to handle the change 3. Updated the previously merged obsolete copy of branch gsoc2010-testbed. svn-id: r52973
27 lines
380 B
Makefile
27 lines
380 B
Makefile
MODULE := engines/testbed
|
|
|
|
MODULE_OBJS := \
|
|
config.o \
|
|
config-params.o \
|
|
detection.o \
|
|
events.o \
|
|
fs.o \
|
|
graphics.o \
|
|
midi.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
|