mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-12 22:51:11 +00:00
18 lines
294 B
Makefile
18 lines
294 B
Makefile
MODULE := engines/plumbers
|
|
|
|
MODULE_OBJS = \
|
|
plumbers.o \
|
|
console.o \
|
|
metaengine.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_PLUMBERS), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|
|
|
|
# Detection objects
|
|
DETECT_OBJS += $(MODULE)/detection.o
|