scummvm/engines/parallaction/module.mk
Nicola Mettifogo 67869d2c10 - Moved disk code for Nippon Safes in new file disk_ns.cpp, adding _ns suffix to classes and member functions.
- Added function stubs into new file disk_br.cpp for Big Red Adventure [IT STILL CRASHES!].
- Modified engine to create the proper Disk manager object.

svn-id: r28246
2007-07-27 19:02:19 +00:00

33 lines
450 B
Makefile

MODULE := engines/parallaction
MODULE_OBJS := \
animation.o \
callables.o \
commands.o \
debug.o \
detection.o \
dialogue.o \
disk_br.o \
disk_ns.o \
font.o \
graphics.o \
intro.o \
inventory.o \
location.o \
menu.o \
parser.o \
parallaction.o \
saveload.o \
sound.o \
staticres.o \
walk.o \
zone.o
# This module can be built as a plugin
ifdef BUILD_PLUGINS
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk