mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
2d9cf85a73
svn-id: r26533
33 lines
447 B
Makefile
33 lines
447 B
Makefile
MODULE := engines/parallaction
|
|
|
|
MODULE_OBJS := \
|
|
animation.o \
|
|
archive.o \
|
|
callables.o \
|
|
commands.o \
|
|
debug.o \
|
|
detection.o \
|
|
dialogue.o \
|
|
disk.o \
|
|
font.o \
|
|
graphics.o \
|
|
intro.o \
|
|
inventory.o \
|
|
location.o \
|
|
menu.o \
|
|
music.o \
|
|
parser.o \
|
|
parallaction.o \
|
|
saveload.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
|