mirror of
https://github.com/scummvm/eba.git
synced 2026-05-21 05:40:53 +00:00
18 lines
279 B
Makefile
18 lines
279 B
Makefile
MODULE := engines/eba
|
|
|
|
MODULE_OBJS = \
|
|
eba.o \
|
|
console.o \
|
|
metaengine.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_EBA), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|
|
|
|
# Detection objects
|
|
DETECT_OBJS += $(MODULE)/detection.o
|