mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-09 19:32:11 +00:00
18 lines
236 B
Makefile
18 lines
236 B
Makefile
|
MODULE := engines/dm
|
||
|
|
||
|
MODULE_OBJS := \
|
||
|
detection.o \
|
||
|
dm.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
|
||
|
|