Files
scummvm/engines/testbed/module.mk
T
Alexander Tkachev 830c7b578c TESTBED: Add Webserver test suite
Two tests now: IP resolving and index page check.
2016-08-24 16:07:55 +06:00

37 lines
486 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
ifdef USE_LIBCURL
MODULE_OBJS += \
cloud.o
endif
ifdef USE_SDL_NET
MODULE_OBJS += \
webserver.o
endif
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