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:
authorMåns Rullgård <mans@mansr.com>2007-03-08 03:24:14 +0300
committerMåns Rullgård <mans@mansr.com>2007-03-08 03:24:14 +0300
commit7f0f6e13a750fa8cb2b7d190bfe24bd46f30f54c (patch)
tree1a7a0750035957c42ffa0ceef3db88cfca741955 /Makefile
parent5438308f3bc787ba1209032068ee9944370d1509 (diff)
include only files actually built in SRCS
Originally committed as revision 8289 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 15d9daf6bd..d49bb1c76b 100644
--- a/Makefile
+++ b/Makefile
@@ -40,7 +40,7 @@ all: documentation
install: install-man
endif
-SRCS = ffmpeg.c ffserver.c cmdutils.c ffplay.c
+SRCS = $(addsuffix .c, $(PROGS-yes)) cmdutils.c
LDFLAGS := -L$(BUILD_ROOT)/libavformat -L$(BUILD_ROOT)/libavcodec -L$(BUILD_ROOT)/libavutil $(LDFLAGS)
EXTRALIBS := -lavformat$(BUILDSUF) -lavcodec$(BUILDSUF) -lavutil$(BUILDSUF) $(EXTRALIBS)