mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 06:08:35 +00:00
45 lines
760 B
Makefile
45 lines
760 B
Makefile
MODULE := engines/queen
|
|
|
|
MODULE_OBJS := \
|
|
bankman.o \
|
|
command.o \
|
|
credits.o \
|
|
cutaway.o \
|
|
debug.o \
|
|
display.o \
|
|
graphics.o \
|
|
grid.o \
|
|
input.o \
|
|
journal.o \
|
|
logic.o \
|
|
metaengine.o \
|
|
midiadlib.o \
|
|
music.o \
|
|
musicdata.o \
|
|
queen.o \
|
|
resource.o \
|
|
restables.o \
|
|
sound.o \
|
|
state.o \
|
|
talk.o \
|
|
version.o \
|
|
walk.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_QUEEN), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|
|
|
|
# Detection objecs
|
|
DETECT_OBJS += $(MODULE)/detection.o
|
|
|
|
# Skip building the following objects if a static
|
|
# module is enabled, because it already has the contents.
|
|
ifneq ($(ENABLE_QUEEN), STATIC_PLUGIN)
|
|
# External dependencies for detection.
|
|
DETECT_OBJS += $(MODULE)/version.o
|
|
endif
|