mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-19 08:06:42 +00:00
960f7cd75a
svn-id: r26625
33 lines
412 B
Makefile
33 lines
412 B
Makefile
MODULE := engines/lure
|
|
|
|
MODULE_OBJS := \
|
|
animseq.o \
|
|
debugger.o \
|
|
decode.o \
|
|
detection.o \
|
|
disk.o \
|
|
events.o \
|
|
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 \
|
|
strings.o \
|
|
surface.o
|
|
|
|
# This module can be built as a plugin
|
|
ifdef BUILD_PLUGINS
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|
|
|