mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 21:59:17 +00:00
81b820f7c9
svn-id: r20665
31 lines
398 B
Makefile
31 lines
398 B
Makefile
MODULE := engines/simon
|
|
|
|
MODULE_OBJS := \
|
|
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 \
|
|
sound.o \
|
|
simon.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
|