scummvm/engines/griffon/module.mk

32 lines
460 B
Makefile
Raw Normal View History

MODULE := engines/griffon
MODULE_OBJS := \
2019-09-02 20:50:10 +00:00
combat.o \
console.o \
cutscenes.o \
2019-09-02 21:10:27 +00:00
dialogs.o \
2019-09-02 21:17:08 +00:00
draw.o \
engine.o \
2019-09-02 21:51:45 +00:00
gfx.o \
griffon.o \
2019-09-02 21:46:00 +00:00
input.o \
2019-09-02 22:17:27 +00:00
logic.o \
metaengine.o \
2019-09-02 21:39:15 +00:00
resources.o \
saveload.o \
sound.o
MODULE_DIRS += \
engines/griffon
# This module can be built as a plugin
ifeq ($(ENABLE_GRIFFON), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk
# Detection objects
DETECT_OBJS += $(MODULE)/detection.o