scummvm/engines/prince/module.mk
aryanrawlani28 29ceb07959 ENGINES: ALL: Revert detection submodule to be directly present in the engine directory
- DETECT_OBJS are present and added inside an engine's modules.mk file.
2020-10-03 14:56:36 +02:00

40 lines
561 B
Makefile

MODULE := engines/prince
MODULE_OBJS = \
animation.o \
archive.o \
cursor.o \
debugger.o \
decompress.o \
draw.o \
flags.o \
font.o \
graphics.o \
hero.o \
inventory.o \
metaengine.o \
mhwanh.o \
music.o \
mob.o \
object.o \
prince.o \
pscr.o \
resource.o \
saveload.o \
script.o \
sound.o \
variatxt.o \
videoplayer.o \
walk.o
# This module can be built as a plugin
ifeq ($(ENABLE_PRINCE), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk
# Detection objects
DETECT_OBJS += $(MODULE)/detection.o