summaryrefslogtreecommitdiff
path: root/doc/examples/Makefile
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-05-08 18:22:28 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-05-08 20:18:53 +0200
commit0261902dac6949631cd053ba425e742080b3314f (patch)
treed317aae233a95b7c2621939e44d12966dff74af3 /doc/examples/Makefile
parent75e0324eabfbdefd63f21d8a9796073433bbf259 (diff)
doc/examples/Makefile: split lines up to make diffs that change them clearer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc/examples/Makefile')
-rw-r--r--doc/examples/Makefile14
1 files 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))