mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
9af006a1f0
Original commit message from CVS: much build fixage turns out synaesthesia and smoothwav depend on gtk, maybe they should go to ext/
61 lines
649 B
Makefile
61 lines
649 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_SDL
|
|
SDL_DIR=sdl
|
|
else
|
|
SDL_DIR=
|
|
endif
|
|
|
|
if USE_VORBIS
|
|
VORBIS_DIR=vorbis
|
|
else
|
|
VORBIS_DIR=
|
|
endif
|
|
|
|
#$A52_DIR
|
|
SUBDIRS=$(AALIB_DIR) $(ALSA_DIR) $(AUDIOFILE_DIR) $(ESD_DIR) \
|
|
$(LAME_DIR) $(MAD_DIR) \
|
|
$(SDL_DIR) $(VORBIS_DIR)
|
|
|
|
#a52
|
|
DIST_SUBDIRS=aalib alsa audiofile esd lame mad sdl vorbis
|