johndoe123 33d28deb69 ILLUSIONS: Additions in various places
- Add NamedPoint and related code
- Remove some debug output
- Fix right mouse button input
- Add bubble code
- Add BBDOU inventory skeleton
2018-07-20 06:43:33 +00:00

46 lines
810 B
Makefile

MODULE := engines/illusions
MODULE_OBJS := \
abortablethread.o \
actor.o \
actorresource.o \
backgroundresource.o \
bbdou/bbdou_bubble.o \
bbdou/bbdou_cursor.o \
bbdou/bbdou_inventory.o \
bbdou/bbdou_specialcode.o \
camera.o \
cursor.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 \
specialcode.o \
spritedecompressqueue.o \
spritedrawqueue.o \
talkresource.o \
talkthread.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