scummvm/engines/testbed/module.mk
Neeraj Kumar a16832760b 1. Added ConfigParams Singelton class to eliminate use of configuration specific static variables.
2. Modified code to handle the change
3. Updated the previously merged obsolete copy of branch gsoc2010-testbed.

svn-id: r52973
2010-10-02 01:05:16 +00:00

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