mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
9b96e8babd
Original commit message from CVS: fixed some GST_LIBS stuff added audiofile added gst-libs/audio building
41 lines
440 B
Makefile
41 lines
440 B
Makefile
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_SDL
|
|
SDL_DIR=sdl
|
|
else
|
|
SDL_DIR=
|
|
endif
|
|
|
|
if USE_VORBIS
|
|
VORBIS_DIR=vorbis
|
|
else
|
|
VORBIS_DIR=
|
|
endif
|
|
|
|
|
|
SUBDIRS=$(AUDIOFILE_DIR) $(ESD_DIR) $(LAME_DIR) $(MAD_DIR) \
|
|
$(SDL_DIR) $(VORBIS_DIR)
|
|
|
|
DIST_SUBDIRS=audiofile esd lame mad sdl vorbis
|