mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 22:28:10 +00:00
29ceb07959
- DETECT_OBJS are present and added inside an engine's modules.mk file.
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
|