diff options
Diffstat (limited to 'ffmpeg/doc/examples/Makefile')
| -rw-r--r-- | ffmpeg/doc/examples/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
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 |
