2006-02-11 22:45:04 +00:00
|
|
|
MODULE := engines/lure
|
|
|
|
|
|
|
|
MODULE_OBJS := \
|
2006-02-12 00:16:31 +00:00
|
|
|
animseq.o \
|
2006-07-08 08:25:27 +00:00
|
|
|
debugger.o \
|
2006-02-12 00:16:31 +00:00
|
|
|
decode.o \
|
2007-04-27 20:32:09 +00:00
|
|
|
detection.o \
|
2006-02-12 00:16:31 +00:00
|
|
|
disk.o \
|
|
|
|
events.o \
|
2007-06-22 12:36:49 +00:00
|
|
|
fights.o \
|
2006-02-12 00:16:31 +00:00
|
|
|
game.o \
|
|
|
|
hotspots.o \
|
|
|
|
intro.o \
|
|
|
|
lure.o \
|
|
|
|
memory.o \
|
|
|
|
menu.o \
|
|
|
|
palette.o \
|
|
|
|
res.o \
|
|
|
|
res_struct.o \
|
|
|
|
room.o \
|
|
|
|
screen.o \
|
|
|
|
scripts.o \
|
2007-06-22 12:36:49 +00:00
|
|
|
sound.o \
|
2006-02-12 00:16:31 +00:00
|
|
|
strings.o \
|
2007-03-17 00:39:18 +00:00
|
|
|
surface.o
|
2006-02-11 22:45:04 +00:00
|
|
|
|
|
|
|
# This module can be built as a plugin
|
2008-05-06 03:00:26 +00:00
|
|
|
ifeq ($(ENABLE_LURE), DYNAMIC_PLUGIN)
|
2006-02-11 22:45:04 +00:00
|
|
|
PLUGIN := 1
|
|
|
|
endif
|
|
|
|
|
2008-01-27 19:47:41 +00:00
|
|
|
# Include common rules
|
2006-06-24 08:48:11 +00:00
|
|
|
include $(srcdir)/rules.mk
|
2006-02-11 22:45:04 +00:00
|
|
|
|