mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 05:38:56 +00:00
67869d2c10
- 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
33 lines
450 B
Makefile
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
|