[FFmpeg-cvslog] doc/examples/Makefile: split lines up to make diffs that change them clearer
Michael Niedermayer
git at videolan.org
Tue May 8 20:20:02 CEST 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Tue May 8 18:22:28 2012 +0200| [0261902dac6949631cd053ba425e742080b3314f] | committer: Michael Niedermayer
doc/examples/Makefile: split lines up to make diffs that change them clearer
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0261902dac6949631cd053ba425e742080b3314f
---
doc/examples/Makefile | 14 ++++++++++++--
1 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/doc/examples/Makefile b/doc/examples/Makefile
index 4d6c7a8..3b70f66 100644
--- a/doc/examples/Makefile
+++ b/doc/examples/Makefile
@@ -1,9 +1,19 @@
# use pkg-config for getting CFLAGS abd LDFLAGS
-FFMPEG_LIBS=libavdevice libavformat libavfilter libavcodec libswscale libavutil
+FFMPEG_LIBS= libavdevice \
+ libavformat \
+ libavfilter \
+ libavcodec \
+ libswscale \
+ libavutil \
+
CFLAGS+=-Wall $(shell pkg-config --cflags $(FFMPEG_LIBS))
LDFLAGS+=$(shell pkg-config --libs $(FFMPEG_LIBS))
-EXAMPLES=decoding_encoding filtering_video filtering_audio metadata muxing
+EXAMPLES= decoding_encoding \
+ filtering_video \
+ filtering_audio \
+ metadata \
+ muxing \
OBJS=$(addsuffix .o,$(EXAMPLES))
More information about the ffmpeg-cvslog
mailing list