Commit 5b55c7f4 authored by Clément Bœsch's avatar Clément Bœsch

doc/examples: add -O2 in CFLAGS.

parent 072c2c08
...@@ -6,8 +6,9 @@ FFMPEG_LIBS= libavdevice \ ...@@ -6,8 +6,9 @@ FFMPEG_LIBS= libavdevice \
libswscale \ libswscale \
libavutil \ libavutil \
CFLAGS+=-Wall $(shell pkg-config --cflags $(FFMPEG_LIBS)) CFLAGS += -Wall -O2
LDLIBS+=$(shell pkg-config --libs $(FFMPEG_LIBS)) CFLAGS += $(shell pkg-config --cflags $(FFMPEG_LIBS))
LDLIBS += $(shell pkg-config --libs $(FFMPEG_LIBS))
EXAMPLES= decoding_encoding \ EXAMPLES= decoding_encoding \
filtering_video \ filtering_video \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment