mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-17 07:07:10 +00:00
a15fdcea21
svn-id: r10292
25 lines
358 B
Makefile
25 lines
358 B
Makefile
MODULE := simon
|
|
|
|
MODULE_OBJS := \
|
|
simon/charset.o \
|
|
simon/debug.o \
|
|
simon/items.o \
|
|
simon/midi.o \
|
|
simon/midiparser_s1d.o \
|
|
simon/res.o \
|
|
simon/sound.o \
|
|
simon/simon.o \
|
|
simon/verb.o \
|
|
simon/vga.o \
|
|
|
|
MODULE_DIRS += \
|
|
simon
|
|
|
|
# This module can be built as a plugin
|
|
ifdef BUILD_PLUGINS
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include common.rules
|