scummvm/engines/parallaction/module.mk
Alyssa Milburn a081ae78ee PARALLACTION: Add custom Adlib driver for BRA.
Thanks to peres for working out how it works in the original engine.
Also, fix the length of MIDI events so it works properly.
2012-09-22 13:20:58 +02:00

45 lines
653 B
Makefile

MODULE := engines/parallaction
MODULE_OBJS := \
adlib.o \
balloons.o \
callables_br.o \
callables_ns.o \
debug.o \
detection.o \
dialogue.o \
disk.o \
disk_br.o \
disk_ns.o \
exec.o \
exec_br.o \
exec_ns.o \
font.o \
gfxbase.o \
graphics.o \
gui.o \
gui_br.o \
gui_ns.o \
input.o \
inventory.o \
objects.o \
parallaction.o \
parallaction_br.o \
parallaction_ns.o \
parser.o \
parser_br.o \
parser_ns.o \
saveload.o \
sound_ns.o \
sound_br.o \
staticres.o \
walk.o
# This module can be built as a plugin
ifeq ($(ENABLE_PARALLACTION), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk