Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2011-05-30 11:18:42 +0400
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2011-06-01 15:02:08 +0400
commitca858ab77d7bb49ae99485721bbbe3a580670904 (patch)
treef532fba952a110340c5bea915e7cf09d6eb1b990 /doc/examples/Makefile
parent201549d1a95e5ea81a97257368668cda0afcb2f8 (diff)
doc/examples: give meaningful names to the example files
Rename: api-example.c -> encoding-example.c output-example.c -> muxing-example.c
Diffstat (limited to 'doc/examples/Makefile')
-rw-r--r--doc/examples/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/Makefile b/doc/examples/Makefile
index facbd7e178..c32d524da4 100644
--- a/doc/examples/Makefile
+++ b/doc/examples/Makefile
@@ -3,7 +3,7 @@ FFMPEG_LIBS=libavdevice libavformat libavfilter libavcodec libswscale libavutil
CFLAGS+=$(shell pkg-config --cflags $(FFMPEG_LIBS))
LDFLAGS+=$(shell pkg-config --libs $(FFMPEG_LIBS))
-EXAMPLES=api-example output-example
+EXAMPLES=encoding-example muxing-example
OBJS=$(addsuffix .o,$(EXAMPLES))