We have better replacements such as the mpg123 plugin. The main reason to keep around mad was for 'freeform' mp3 support, but mpg123 can handle those too nowadays. Also, mad is GPL and has been unmaintained for years. https://bugzilla.gnome.org/show_bug.cgi?id=776140
94 lines
1012 B
Makefile
94 lines
1012 B
Makefile
if USE_A52DEC
|
|
A52DEC_DIR = a52dec
|
|
else
|
|
A52DEC_DIR =
|
|
endif
|
|
|
|
if USE_AMRNB
|
|
AMRNB_DIR = amrnb
|
|
else
|
|
AMRNB_DIR =
|
|
endif
|
|
|
|
if USE_AMRWB
|
|
AMRWB_DIR = amrwbdec
|
|
else
|
|
AMRWB_DIR =
|
|
endif
|
|
|
|
if USE_CDIO
|
|
CDIO_DIR = cdio
|
|
else
|
|
CDIO_DIR =
|
|
endif
|
|
|
|
if USE_DVDREAD
|
|
DVDREAD_DIR = dvdread
|
|
else
|
|
DVDREAD_DIR =
|
|
endif
|
|
|
|
if USE_LAME
|
|
LAME_DIR = lame
|
|
else
|
|
LAME_DIR =
|
|
endif
|
|
|
|
if USE_MPEG2DEC
|
|
MPEG2DEC_DIR = mpeg2dec
|
|
else
|
|
MPEG2DEC_DIR =
|
|
endif
|
|
|
|
if USE_MPG123
|
|
MPG123_DIR=mpg123
|
|
else
|
|
MPG123_DIR=
|
|
endif
|
|
|
|
if USE_SIDPLAY
|
|
SIDPLAY_DIR = sidplay
|
|
else
|
|
SIDPLAY_DIR =
|
|
endif
|
|
|
|
if USE_TWOLAME
|
|
TWOLAME_DIR = twolame
|
|
else
|
|
TWOLAME_DIR =
|
|
endif
|
|
|
|
if USE_X264
|
|
X264_DIR=x264
|
|
else
|
|
X264_DIR=
|
|
endif
|
|
|
|
SUBDIRS = \
|
|
$(A52DEC_DIR) \
|
|
$(AMRNB_DIR) \
|
|
$(AMRWB_DIR) \
|
|
$(CDIO_DIR) \
|
|
$(DVDREAD_DIR) \
|
|
$(LAME_DIR) \
|
|
$(MPEG2DEC_DIR) \
|
|
$(MPG123_DIR) \
|
|
$(SIDPLAY_DIR) \
|
|
$(TWOLAME_DIR) \
|
|
$(X264_DIR)
|
|
|
|
DIST_SUBDIRS = \
|
|
a52dec \
|
|
amrnb \
|
|
amrwbdec \
|
|
cdio \
|
|
dvdread \
|
|
lame \
|
|
mpeg2dec \
|
|
mpg123 \
|
|
sidplay \
|
|
twolame \
|
|
x264
|
|
|
|
include $(top_srcdir)/common/parallel-subdirs.mak
|