scummvm/engines/parallaction/module.mk
Nicola Mettifogo d387d1af0e - Moved dialogue balloon management code from Gfx to its own class
- Added a class to draw balloons in BRA (still without text and with wrong placement)

svn-id: r32902
2008-07-04 00:29:21 +00:00

40 lines
596 B
Makefile

MODULE := engines/parallaction
MODULE_OBJS := \
balloons_o \
callables_br.o \
callables_ns.o \
debug.o \
detection.o \
dialogue.o \
disk_br.o \
disk_ns.o \
exec_br.o \
exec_ns.o \
font.o \
gfxbase.o \
graphics.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.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