diff options
author | Måns Rullgård <mans@mansr.com> | 2007-03-08 00:24:14 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2007-03-08 00:24:14 +0000 |
commit | 7f0f6e13a750fa8cb2b7d190bfe24bd46f30f54c (patch) | |
tree | 1a7a0750035957c42ffa0ceef3db88cfca741955 /Makefile | |
parent | 5438308f3bc787ba1209032068ee9944370d1509 (diff) | |
download | ffmpeg-7f0f6e13a750fa8cb2b7d190bfe24bd46f30f54c.tar.gz |
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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |