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:
-rw-r--r--common.mak2
-rw-r--r--libavcodec/Makefile2
-rw-r--r--libavformat/Makefile2
3 files changed, 3 insertions, 3 deletions
diff --git a/common.mak b/common.mak
index 83f2dbb1ca..b42b33e8f0 100644
--- a/common.mak
+++ b/common.mak
@@ -65,7 +65,7 @@ TESTPROGS += $(TESTPROGS-yes)
FFEXTRALIBS := $(addprefix -l,$(addsuffix $(BUILDSUF),$(FFLIBS))) $(EXTRALIBS)
FFLDFLAGS := $(addprefix -L$(BUILD_ROOT)/lib,$(FFLIBS)) $(LDFLAGS)
-EXAMPLES := $(addprefix $(SUBDIR),$(EXAMPLES))
+EXAMPLES := $(addprefix $(SUBDIR),$(addsuffix -example$(EXESUF),$(EXAMPLES)))
OBJS := $(addprefix $(SUBDIR),$(OBJS))
TESTPROGS := $(addprefix $(SUBDIR),$(addsuffix -test$(EXESUF),$(TESTPROGS)))
diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index c1926c7021..d26a5cfed8 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -531,7 +531,7 @@ OBJS-$(HAVE_VIS) += sparc/dsputil_vis.o \
sparc/simple_idct_vis.o \
-EXAMPLES = api-example$(EXESUF)
+EXAMPLES = api
TESTPROGS = cabac dct eval fft h264 rangecoder snow
TESTPROGS-$(ARCH_X86) += x86/cpuid
diff --git a/libavformat/Makefile b/libavformat/Makefile
index eaec4a9351..6ade1bb1dd 100644
--- a/libavformat/Makefile
+++ b/libavformat/Makefile
@@ -243,7 +243,7 @@ OBJS-$(CONFIG_RTP_PROTOCOL) += rtpproto.o
OBJS-$(CONFIG_TCP_PROTOCOL) += tcp.o
OBJS-$(CONFIG_UDP_PROTOCOL) += udp.o
-EXAMPLES = output-example
+EXAMPLES = output
TESTPROGS = timefilter
include $(SUBDIR)../subdir.mak