mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
4f1c7a82e6
Original commit message from CVS: * configure.ac: * docs/plugins/Makefile.am: * docs/plugins/gst-plugins-ugly-plugins-docs.sgml: * docs/plugins/gst-plugins-ugly-plugins-sections.txt: * docs/plugins/gst-plugins-ugly-plugins.args: * docs/plugins/gst-plugins-ugly-plugins.hierarchy: * docs/plugins/gst-plugins-ugly-plugins.interfaces: * docs/plugins/inspect/plugin-a52dec.xml: * docs/plugins/inspect/plugin-asf.xml: * docs/plugins/inspect/plugin-cdio.xml: * docs/plugins/inspect/plugin-dvdlpcmdec.xml: * docs/plugins/inspect/plugin-dvdread.xml: * docs/plugins/inspect/plugin-dvdsub.xml: * docs/plugins/inspect/plugin-iec958.xml: * docs/plugins/inspect/plugin-lame.xml: * docs/plugins/inspect/plugin-mad.xml: * docs/plugins/inspect/plugin-mpeg2dec.xml: * docs/plugins/inspect/plugin-mpegaudioparse.xml: * docs/plugins/inspect/plugin-mpegstream.xml: * docs/plugins/inspect/plugin-realmedia.xml: * docs/plugins/inspect/plugin-siddec.xml: * ext/Makefile.am: 0.10.8.2 pre-release. * po/LINGUAS: * po/POTFILES.in: * po/id.po: Add new translation.
75 lines
783 B
Makefile
75 lines
783 B
Makefile
if USE_A52DEC
|
|
A52DEC_DIR = a52dec
|
|
else
|
|
A52DEC_DIR =
|
|
endif
|
|
|
|
if USE_AMRNB
|
|
AMRNB_DIR = amrnb
|
|
else
|
|
AMRNB_DIR =
|
|
endif
|
|
|
|
if USE_CDIO
|
|
CDIO_DIR = cdio
|
|
else
|
|
CDIO_DIR =
|
|
endif
|
|
|
|
if USE_DVDREAD
|
|
DVDREAD_DIR = dvdread
|
|
else
|
|
DVDREAD_DIR =
|
|
endif
|
|
|
|
if USE_DVDNAV
|
|
DVDNAV_DIR = dvdnav
|
|
else
|
|
DVDNAV_DIR =
|
|
endif
|
|
|
|
if USE_LAME
|
|
LAME_DIR = lame
|
|
else
|
|
LAME_DIR =
|
|
endif
|
|
|
|
if USE_MAD
|
|
MAD_DIR = mad
|
|
else
|
|
MAD_DIR =
|
|
endif
|
|
|
|
if USE_MPEG2DEC
|
|
MPEG2DEC_DIR = mpeg2dec
|
|
else
|
|
MPEG2DEC_DIR =
|
|
endif
|
|
|
|
if USE_SIDPLAY
|
|
SIDPLAY_DIR = sidplay
|
|
else
|
|
SIDPLAY_DIR =
|
|
endif
|
|
|
|
SUBDIRS = \
|
|
$(A52DEC_DIR) \
|
|
$(AMRNB_DIR) \
|
|
$(CDIO_DIR) \
|
|
$(DVDREAD_DIR) \
|
|
$(DVDNAV_DIR) \
|
|
$(LAME_DIR) \
|
|
$(MAD_DIR) \
|
|
$(MPEG2DEC_DIR) \
|
|
$(SIDPLAY_DIR)
|
|
|
|
DIST_SUBDIRS = \
|
|
a52dec \
|
|
amrnb \
|
|
cdio \
|
|
dvdnav \
|
|
dvdread \
|
|
lame \
|
|
mad \
|
|
mpeg2dec \
|
|
sidplay
|