From 79f3384ce15db4bbf3aa49a526d79ae58ad231c2 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Sat, 2 Jul 2011 13:15:16 +0200 Subject: [PATCH] examples: rename "-example" suffix from examples files The suffix is redundant since the containing directory itself is called "examples". Simplify. --- doc/examples/Makefile | 2 +- doc/examples/{encoding-example.c => encoding.c} | 0 doc/examples/{muxing-example.c => muxing.c} | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename doc/examples/{encoding-example.c => encoding.c} (100%) rename doc/examples/{muxing-example.c => muxing.c} (100%) diff --git a/doc/examples/Makefile b/doc/examples/Makefile index c32d524da4..4561b10bad 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=encoding-example muxing-example +EXAMPLES=encoding muxing OBJS=$(addsuffix .o,$(EXAMPLES)) diff --git a/doc/examples/encoding-example.c b/doc/examples/encoding.c similarity index 100% rename from doc/examples/encoding-example.c rename to doc/examples/encoding.c diff --git a/doc/examples/muxing-example.c b/doc/examples/muxing.c similarity index 100% rename from doc/examples/muxing-example.c rename to doc/examples/muxing.c