1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
SUBDIRS =
if BUILD_mp3
SUBDIRS += mp3
endif
if BUILD_aac
SUBDIRS += aac
endif
if BUILD_musepack
SUBDIRS += musepack
endif
if BUILD_vorbis
SUBDIRS += vorbis
endif
if BUILD_opus
SUBDIRS += opus
endif
if BUILD_flac
SUBDIRS += flac
endif
if BUILD_wavpack
SUBDIRS += wavpack
endif
if BUILD_sndfile
SUBDIRS += sndfile
endif
if BUILD_modplug
SUBDIRS += modplug
endif
if BUILD_timidity
SUBDIRS += timidity
endif
if BUILD_sidplay2
SUBDIRS += sidplay2
endif
if BUILD_ffmpeg
SUBDIRS += ffmpeg
endif
if BUILD_speex
SUBDIRS += speex
endif
|