mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-22 18:02:05 +00:00
16 lines
250 B
Makefile
16 lines
250 B
Makefile
MODULE := engines/dreamweb
|
|
|
|
MODULE_OBJS := \
|
|
console.o \
|
|
detection.o \
|
|
dreamweb.o \
|
|
dreamgen.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_DREAMWEB), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|