mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-05 00:36:57 +00:00
29ceb07959
- DETECT_OBJS are present and added inside an engine's modules.mk file.
44 lines
634 B
Makefile
44 lines
634 B
Makefile
MODULE := engines/hugo
|
|
|
|
MODULE_OBJS := \
|
|
console.o \
|
|
dialogs.o \
|
|
display.o \
|
|
file.o \
|
|
file_v1d.o \
|
|
file_v2d.o \
|
|
file_v3d.o \
|
|
file_v1w.o \
|
|
file_v2w.o \
|
|
hugo.o \
|
|
intro.o \
|
|
inventory.o \
|
|
metaengine.o \
|
|
mouse.o \
|
|
object.o \
|
|
object_v1d.o \
|
|
object_v1w.o \
|
|
object_v2d.o \
|
|
object_v3d.o \
|
|
parser.o \
|
|
parser_v1w.o \
|
|
parser_v1d.o \
|
|
parser_v2d.o \
|
|
parser_v3d.o \
|
|
route.o \
|
|
schedule.o \
|
|
sound.o \
|
|
text.o \
|
|
util.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_HUGO), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|
|
|
|
# Detection objects
|
|
DETECT_OBJS += $(MODULE)/detection.o
|