blob: 5d0297bb1183d207e210ebec1c063a5c4fdaad23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
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
|