mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 12:39:56 +00:00
71d0526834
Tucker does not currently use Debug Channels, but this does provide a base for adding them along with any other debugging commands. svn-id: r54141
21 lines
317 B
Makefile
21 lines
317 B
Makefile
MODULE := engines/tucker
|
|
|
|
MODULE_OBJS := \
|
|
console.o \
|
|
detection.o \
|
|
graphics.o \
|
|
locations.o \
|
|
resource.o \
|
|
saveload.o \
|
|
sequences.o \
|
|
staticres.o \
|
|
tucker.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_TUCKER), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|