mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 22:28:10 +00:00
f0fe060cc3
Since TOUCHE uses Debug Channels, this allows for the interactive setting of debugflags as well as providing a base for adding further debugging commands. svn-id: r54137
22 lines
320 B
Makefile
22 lines
320 B
Makefile
MODULE := engines/touche
|
|
|
|
MODULE_OBJS := \
|
|
console.o \
|
|
detection.o \
|
|
graphics.o \
|
|
menu.o \
|
|
midi.o \
|
|
opcodes.o \
|
|
resource.o \
|
|
saveload.o \
|
|
staticres.o \
|
|
touche.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_TOUCHE), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|