mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-22 18:02:05 +00:00
80cf2fa46f
svn-id: r20584
35 lines
450 B
Makefile
35 lines
450 B
Makefile
MODULE := engines/queen
|
|
|
|
MODULE_OBJS := \
|
|
bankman.o \
|
|
command.o \
|
|
credits.o \
|
|
cutaway.o \
|
|
debug.o \
|
|
display.o \
|
|
graphics.o \
|
|
grid.o \
|
|
input.o \
|
|
journal.o \
|
|
logic.o \
|
|
music.o \
|
|
musicdata.o \
|
|
queen.o \
|
|
resource.o \
|
|
restables.o \
|
|
sound.o \
|
|
state.o \
|
|
talk.o \
|
|
walk.o
|
|
|
|
MODULE_DIRS += \
|
|
engines/queen
|
|
|
|
# This module can be built as a plugin
|
|
ifdef BUILD_PLUGINS
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/common.rules
|