mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-22 01:39:57 +00:00
9cea3d393f
svn-id: r16502
29 lines
500 B
Makefile
29 lines
500 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/mt32.o \
|
|
|
|
MODULE_DIRS += \
|
|
sound \
|
|
sound/softsynth
|
|
|
|
# Include common rules
|
|
include $(srcdir)/common.rules
|