From f7813a5324be39d13ab536c245d15dfc602a7849 Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Sun, 29 Dec 2013 12:19:38 +0000 Subject: basic type mechanism working --- ffmpeg/doc/examples/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'ffmpeg/doc/examples/Makefile') diff --git a/ffmpeg/doc/examples/Makefile b/ffmpeg/doc/examples/Makefile index c849daa..f085532 100644 --- a/ffmpeg/doc/examples/Makefile +++ b/ffmpeg/doc/examples/Makefile @@ -7,24 +7,26 @@ FFMPEG_LIBS= libavdevice \ libswscale \ libavutil \ -CFLAGS += -Wall -O2 -g +CFLAGS += -Wall -g CFLAGS := $(shell pkg-config --cflags $(FFMPEG_LIBS)) $(CFLAGS) LDLIBS := $(shell pkg-config --libs $(FFMPEG_LIBS)) $(LDLIBS) EXAMPLES= decoding_encoding \ - demuxing \ + demuxing_decoding \ filtering_video \ filtering_audio \ metadata \ muxing \ resampling_audio \ scaling_video \ + transcode_aac \ OBJS=$(addsuffix .o,$(EXAMPLES)) # the following examples make explicit use of the math library decoding_encoding: LDLIBS += -lm muxing: LDLIBS += -lm +resampling_audio: LDLIBS += -lm .phony: all clean-test clean -- cgit v1.2.3