mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-27 05:32:45 +00:00
34 lines
548 B
Makefile
34 lines
548 B
Makefile
MODULE := engines/dragons
|
|
|
|
MODULE_OBJS := \
|
|
actor.o \
|
|
actorresource.o \
|
|
background.o \
|
|
bigfile.o \
|
|
cursor.o \
|
|
detection.o \
|
|
dragonflg.o \
|
|
dragonimg.o \
|
|
dragonini.o \
|
|
dragonobd.o \
|
|
dragonrms.o \
|
|
dragonvar.o \
|
|
dragons.o \
|
|
inventory.o \
|
|
scene.o \
|
|
screen.o \
|
|
scriptopcodes.o \
|
|
sequenceopcodes.o \
|
|
specialopcodes.o
|
|
|
|
MODULE_DIRS += \
|
|
engines/dragons
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_QUUX), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|