From 0261902dac6949631cd053ba425e742080b3314f Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 8 May 2012 18:22:28 +0200 Subject: [PATCH] doc/examples/Makefile: split lines up to make diffs that change them clearer Signed-off-by: Michael Niedermayer --- doc/examples/Makefile | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/doc/examples/Makefile b/doc/examples/Makefile index 4d6c7a8be6..3b70f66fb2 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))