mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-05 02:17:05 +00:00
49 lines
1.0 KiB
Makefile
49 lines
1.0 KiB
Makefile
MODULE := engines/mutationofjb
|
|
|
|
MODULE_OBJS := \
|
|
commands/additemcommand.o \
|
|
commands/callmacrocommand.o \
|
|
commands/camefromcommand.o \
|
|
commands/changecommand.o \
|
|
commands/command.o \
|
|
commands/conditionalcommand.o \
|
|
commands/definestructcommand.o \
|
|
commands/endblockcommand.o \
|
|
commands/gotocommand.o \
|
|
commands/ifcommand.o \
|
|
commands/ifitemcommand.o \
|
|
commands/ifpiggycommand.o \
|
|
commands/labelcommand.o \
|
|
commands/newroomcommand.o \
|
|
commands/removeallitemscommand.o \
|
|
commands/removeitemcommand.o \
|
|
commands/renamecommand.o \
|
|
commands/saycommand.o \
|
|
commands/seqcommand.o \
|
|
widgets/buttonwidget.o \
|
|
widgets/conversationwidget.o \
|
|
widgets/imagewidget.o \
|
|
widgets/inventorywidget.o \
|
|
widgets/widget.o \
|
|
animationdecoder.o \
|
|
debug.o \
|
|
detection.o \
|
|
encryptedfile.o \
|
|
font.o \
|
|
game.o \
|
|
gamedata.o \
|
|
gui.o \
|
|
inventory.o \
|
|
mutationofjb.o \
|
|
room.o \
|
|
script.o \
|
|
util.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_MUTATIONOFJB), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|