mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 14:50:17 +00:00
20 lines
261 B
Makefile
20 lines
261 B
Makefile
MODULE := engines/dm
|
|
|
|
MODULE_OBJS := \
|
|
detection.o \
|
|
dm.o \
|
|
gfx.o \
|
|
dungeonman.o
|
|
|
|
MODULE_DIRS += \
|
|
engines/dm
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_DM), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|
|
|