mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-28 12:46:56 +00:00
13dc149ded
changes. There are a few things that could use a bit more work, and I've only tested it on my Linux box. I have verified that ScummVM still compiles when it's disabled, though, so it shouldn't break anything too badly. svn-id: r17512
30 lines
532 B
Makefile
30 lines
532 B
Makefile
MODULE := sound
|
|
|
|
MODULE_OBJS := \
|
|
sound/audiocd.o \
|
|
sound/audiostream.o \
|
|
sound/flac.o \
|
|
sound/fmopl.o \
|
|
sound/mididrv.o \
|
|
sound/midiparser.o \
|
|
sound/midiparser_smf.o \
|
|
sound/midiparser_xmidi.o \
|
|
sound/mixer.o \
|
|
sound/mp3.o \
|
|
sound/mpu401.o \
|
|
sound/rate.o \
|
|
sound/voc.o \
|
|
sound/vorbis.o \
|
|
sound/wave.o \
|
|
sound/softsynth/adlib.o \
|
|
sound/softsynth/ym2612.o \
|
|
sound/softsynth/fluidsynth.o \
|
|
sound/softsynth/mt32.o \
|
|
|
|
MODULE_DIRS += \
|
|
sound \
|
|
sound/softsynth
|
|
|
|
# Include common rules
|
|
include $(srcdir)/common.rules
|