scummvm/engines/prince/module.mk

37 lines
502 B
Makefile
Raw Normal View History

2013-11-04 11:28:10 +00:00
MODULE := engines/prince
MODULE_OBJS = \
2013-12-05 00:02:31 +00:00
animation.o \
2014-10-10 14:41:27 +02:00
archive.o \
cursor.o \
2013-11-04 11:28:10 +00:00
debugger.o \
2014-10-10 14:41:27 +02:00
decompress.o \
2013-11-04 11:28:10 +00:00
detection.o \
2018-05-04 10:38:10 +02:00
draw.o \
2014-10-10 14:41:27 +02:00
flags.o \
2013-11-04 11:28:10 +00:00
font.o \
2014-10-10 14:41:27 +02:00
graphics.o \
hero.o \
inventory.o \
2014-10-10 14:41:27 +02:00
mhwanh.o \
2018-05-04 10:04:18 +02:00
music.o \
2013-11-04 11:28:10 +00:00
mob.o \
object.o \
prince.o \
pscr.o \
2018-05-05 20:31:22 +02:00
resource.o \
2014-10-10 14:41:27 +02:00
saveload.o \
script.o \
sound.o \
variatxt.o \
videoplayer.o \
walk.o
2013-11-04 11:28:10 +00:00
# This module can be built as a plugin
ifeq ($(ENABLE_PRINCE), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk