From 624c413d55060753c4afdc54f059f7ec9dc59c8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Sun, 19 Feb 2012 02:17:56 +0100 Subject: [PATCH] examples: add -Wall to CFLAGS. --- doc/examples/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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