Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2012-02-19 05:17:56 +0400
committerClément Bœsch <ubitux@gmail.com>2012-02-19 05:18:29 +0400
commit624c413d55060753c4afdc54f059f7ec9dc59c8c (patch)
tree1d3a63339a251f935c9bef18c1fc1c9559420459 /doc/examples
parent2b97be5d570587f9c2ef17e6fad79f3636e5ae7e (diff)
examples: add -Wall to CFLAGS.
Diffstat (limited to 'doc/examples')
-rw-r--r--doc/examples/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/Makefile b/doc/examples/Makefile
index b363590d53..b4d299ff67 100644
--- a/doc/examples/Makefile
+++ b/doc/examples/Makefile
@@ -1,6 +1,6 @@
# use pkg-config for getting CFLAGS abd LDFLAGS
FFMPEG_LIBS=libavdevice libavformat libavfilter libavcodec libswscale libavutil
-CFLAGS+=$(shell pkg-config --cflags $(FFMPEG_LIBS))
+CFLAGS+=-Wall $(shell pkg-config --cflags $(FFMPEG_LIBS))
LDFLAGS+=$(shell pkg-config --libs $(FFMPEG_LIBS))
EXAMPLES=decoding_encoding filtering metadata muxing