scummvm/engines/prince/module.mk

32 lines
442 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 \
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 \
mhwanh.o \
2013-11-04 11:28:10 +00:00
mob.o \
object.o \
prince.o \
pscr.o \
2014-10-10 14:41:27 +02:00
saveload.o \
script.o \
sound.o \
variatxt.o \
videoplayer.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