mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-08 10:51:11 +00:00
29ceb07959
- DETECT_OBJS are present and added inside an engine's modules.mk file.
31 lines
444 B
Makefile
31 lines
444 B
Makefile
MODULE := engines/draci
|
|
|
|
MODULE_OBJS := \
|
|
animation.o \
|
|
barchive.o \
|
|
console.o \
|
|
draci.o \
|
|
font.o \
|
|
game.o \
|
|
metaengine.o \
|
|
mouse.o \
|
|
music.o \
|
|
saveload.o \
|
|
screen.o \
|
|
script.o \
|
|
sound.o \
|
|
sprite.o \
|
|
surface.o \
|
|
walking.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_DRACI), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|
|
|
|
# Detection objects
|
|
DETECT_OBJS += $(MODULE)/detection.o
|