mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
589ade4357
Original commit message from CVS: made changes everywhere to accomodate for the headers being in <gst/(lib)/...> we'll need to conclude this fast because we will also need to change stuff in core real soon for the libs in order to fix everything and I can't do it right now because I disabled all of the plugins here ;)
65 lines
732 B
Makefile
65 lines
732 B
Makefile
if USE_A52
|
|
A52_DIR=a52
|
|
else
|
|
A52_DIR=
|
|
endif
|
|
|
|
if USE_AALIB
|
|
AALIB_DIR=aalib
|
|
else
|
|
AALIB_DIR=
|
|
endif
|
|
|
|
if USE_ALSA
|
|
ALSA_DIR=alsa
|
|
else
|
|
ALSA_DIR=
|
|
endif
|
|
|
|
if USE_AUDIOFILE
|
|
AUDIOFILE_DIR=audiofile
|
|
else
|
|
AUDIOFILE_DIR=
|
|
endif
|
|
|
|
if USE_ESD
|
|
ESD_DIR=esd
|
|
else
|
|
ESD_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_SDL
|
|
SDL_DIR=sdl
|
|
else
|
|
SDL_DIR=
|
|
endif
|
|
|
|
if USE_VORBIS
|
|
VORBIS_DIR=vorbis
|
|
else
|
|
VORBIS_DIR=
|
|
endif
|
|
|
|
SUBDIRS=$(A52_DIR) $(AALIB_DIR) $(ALSA_DIR) $(AUDIOFILE_DIR) $(ESD_DIR) \
|
|
$(LAME_DIR) $(MAD_DIR) $(MPEG2DEC_DIR)\
|
|
$(SDL_DIR) $(VORBIS_DIR)
|
|
|
|
DIST_SUBDIRS=a52 aalib alsa audiofile esd lame mad mpeg2dec sdl vorbis
|