mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-10 11:51:52 +00:00
38 lines
637 B
Makefile
38 lines
637 B
Makefile
MODULE := engines/illusions
|
|
|
|
MODULE_OBJS := \
|
|
actor.o \
|
|
actorresource.o \
|
|
backgroundresource.o \
|
|
camera.o \
|
|
detection.o \
|
|
dictionary.o \
|
|
fixedpoint.o \
|
|
fontresource.o \
|
|
graphics.o \
|
|
illusions.o \
|
|
input.o \
|
|
resourcesystem.o \
|
|
screen.o \
|
|
scriptman.o \
|
|
scriptopcodes.o \
|
|
scriptresource.o \
|
|
scriptthread.o \
|
|
sequenceopcodes.o \
|
|
soundresource.o \
|
|
spritedecompressqueue.o \
|
|
spritedrawqueue.o \
|
|
talkresource.o \
|
|
thread.o \
|
|
time.o \
|
|
timerthread.o \
|
|
updatefunctions.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_ILLUSIONS), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|