Browse Source

examples: add -Wall to CFLAGS.

tags/n0.11
Clément Bœsch 13 years ago
parent
commit
624c413d55
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      doc/examples/Makefile

+ 1
- 1
doc/examples/Makefile View File

@@ -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


Loading…
Cancel
Save