gstreamer/ext/Makefile.am
Tim-Philipp Müller 50501c07be Half-baked port to 0.10. Needs some love in the seeking department, but at least it does something.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/dvdread/Makefile.am:
* ext/dvdread/dvdreadsrc.c:
* ext/dvdread/dvdreadsrc.h:
Half-baked port to 0.10. Needs some love
in the seeking department, but at least
it does something.
* ext/dvdread/stream_labels.c:
* ext/dvdread/stream_labels.h:
Remove these (we use ISO-639 language codes internally; applications
that want to translate those into language names for display to the
user should rely on the iso-codes package for that).
2006-02-09 17:27:57 +00:00

66 lines
704 B
Makefile

if USE_A52DEC
A52DEC_DIR = a52dec
else
A52DEC_DIR =
endif
if USE_AMRNB
AMRNB_DIR = amrnb
else
AMRNB_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) \
$(DVDREAD_DIR) \
$(DVDNAV_DIR) \
$(LAME_DIR) \
$(MAD_DIR) \
$(MPEG2DEC_DIR) \
$(SIDPLAY_DIR)
DIST_SUBDIRS = \
a52dec \
amrnb \
dvdread \
lame \
mad \
mpeg2dec \
sidplay