mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-21 09:21:08 +00:00
a71d60686c
Implemented IMA ADPCM decoder. svn-id: r17903
31 lines
549 B
Makefile
31 lines
549 B
Makefile
MODULE := sound
|
|
|
|
MODULE_OBJS := \
|
|
sound/adpcm.o \
|
|
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
|