diff options
author | Måns Rullgård <mans@mansr.com> | 2010-01-26 23:13:01 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-01-26 23:13:01 +0000 |
commit | 5a0f713118b9290c37cc19009cc7019d94ab70a7 (patch) | |
tree | c0619376f5765cc62d614e83548f4c9291f8426f /Makefile | |
parent | 16e5e39ab418e5450550da7a62fce29c782cd2c8 (diff) | |
download | ffmpeg-5a0f713118b9290c37cc19009cc7019d94ab70a7.tar.gz |
Allow disabling of lavc, lavf, lavd, and lsws
Originally committed as revision 21468 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -20,10 +20,14 @@ ALLPROGS = $(addsuffix $(EXESUF), $(BASENAMES)) ALLPROGS_G = $(addsuffix _g$(EXESUF), $(BASENAMES)) ALLMANPAGES = $(addsuffix .1, $(BASENAMES)) +FFLIBS-$(CONFIG_AVCODEC) += avcodec +FFLIBS-$(CONFIG_AVDEVICE) += avdevice FFLIBS-$(CONFIG_AVFILTER) += avfilter +FFLIBS-$(CONFIG_AVFORMAT) += avformat FFLIBS-$(CONFIG_POSTPROC) += postproc +FFLIBS-$(CONFIG_SWSCALE) += swscale -FFLIBS := avdevice avformat avcodec avutil swscale +FFLIBS := avutil DATA_FILES := $(wildcard $(SRC_DIR)/ffpresets/*.ffpreset) |