scummvm/engines/pegasus/module.mk

47 lines
818 B
Makefile
Raw Normal View History

MODULE := engines/pegasus
MODULE_OBJS = \
2011-05-12 16:17:12 -04:00
console.o \
cursor.o \
detection.o \
elements.o \
2011-09-22 20:17:09 -04:00
energymonitor.o \
2011-09-16 19:06:22 -04:00
fader.o \
gamestate.o \
graphics.o \
hotspot.o \
input.o \
2011-09-20 22:05:09 -04:00
menu.o \
movie.o \
notification.o \
pegasus.o \
sound.o \
surface.o \
2011-09-07 13:13:34 -04:00
timers.o \
2011-09-17 12:03:48 -04:00
transition.o \
util.o \
items/inventory.o \
items/inventorypicture.o \
items/item.o \
items/itemlist.o \
2011-09-04 12:33:32 -04:00
items/biochips/biochipitem.o \
items/inventory/inventoryitem.o \
neighborhood/door.o \
neighborhood/exit.o \
neighborhood/extra.o \
neighborhood/hotspotinfo.o \
neighborhood/neighborhood.o \
neighborhood/spot.o \
neighborhood/turn.o \
neighborhood/view.o \
neighborhood/zoom.o
# This module can be built as a plugin
ifeq ($(ENABLE_PEGASUS), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk