mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 22:28:10 +00:00
5b3f73f27c
svn-id: r21959
33 lines
425 B
Makefile
33 lines
425 B
Makefile
MODULE := engines/simon
|
|
|
|
MODULE_OBJS := \
|
|
animation.o \
|
|
charset.o \
|
|
cursor.o \
|
|
debug.o \
|
|
debugger.o \
|
|
game.o \
|
|
icons.o \
|
|
items.o \
|
|
midi.o \
|
|
midiparser_s1d.o \
|
|
oracle.o \
|
|
res.o \
|
|
saveload.o \
|
|
simon.o \
|
|
sound.o \
|
|
string.o \
|
|
verb.o \
|
|
vga.o \
|
|
|
|
MODULE_DIRS += \
|
|
engines/simon
|
|
|
|
# This module can be built as a plugin
|
|
ifdef BUILD_PLUGINS
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/common.rules
|