diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-02-19 02:17:56 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-02-19 02:18:29 +0100 |
commit | 624c413d55060753c4afdc54f059f7ec9dc59c8c (patch) | |
tree | 1d3a63339a251f935c9bef18c1fc1c9559420459 | |
parent | 2b97be5d570587f9c2ef17e6fad79f3636e5ae7e (diff) | |
download | ffmpeg-624c413d55060753c4afdc54f059f7ec9dc59c8c.tar.gz |
examples: add -Wall to CFLAGS.
-rw-r--r-- | doc/examples/Makefile | 2 |
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 |