summaryrefslogtreecommitdiff
path: root/doc/examples/Makefile
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2017-03-29 13:29:00 +0200
committerClément Bœsch <u@pkh.me>2017-03-29 13:29:22 +0200
commitb785af48687fa839fbc25045d2201335753304b3 (patch)
treeafa8d9c595499f33bab4c2553fb6b1c7e70ef29b /doc/examples/Makefile
parent4cf1f68903cebcf6a6bede970f1b8f1509edf710 (diff)
parent40aaa8dadfd1c69ff4460d04750e1403b5535a6d (diff)
Merge commit '40aaa8dadfd1c69ff4460d04750e1403b5535a6d'
* commit '40aaa8dadfd1c69ff4460d04750e1403b5535a6d': examples/avcodec: split audio encoding into a separate example Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'doc/examples/Makefile')
-rw-r--r--doc/examples/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/examples/Makefile b/doc/examples/Makefile
index af3815995a..f76e5a293c 100644
--- a/doc/examples/Makefile
+++ b/doc/examples/Makefile
@@ -15,6 +15,7 @@ EXAMPLES= avio_dir_cmd \
avio_reading \
decoding_encoding \
demuxing_decoding \
+ encode_audio \
extract_mvs \
filtering_video \
filtering_audio \
@@ -31,7 +32,7 @@ OBJS=$(addsuffix .o,$(EXAMPLES))
# the following examples make explicit use of the math library
avcodec: LDLIBS += -lm
-decoding_encoding: LDLIBS += -lm
+encode_audio: LDLIBS += -lm
muxing: LDLIBS += -lm
resampling_audio: LDLIBS += -lm