summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2007-03-08 00:24:14 +0000
committerMåns Rullgård <mans@mansr.com>2007-03-08 00:24:14 +0000
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)