diff options
author | Mans Rullgard <mans@mansr.com> | 2011-07-11 20:53:15 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-07-11 21:08:52 +0100 |
commit | 1fef92fd7390cda7e5a2655c1c7cfc0851c9a66e (patch) | |
tree | 744e7717b609cc6bb23dd602f2da94bb08a29b97 /Makefile | |
parent | f6b7f72461673e4d398b1edf9ed2a7fe70d99c47 (diff) | |
download | ffmpeg-1fef92fd7390cda7e5a2655c1c7cfc0851c9a66e.tar.gz |
build: remove unnecessary dependency on libs from 'all' target
The libs are added to the all target elsewhere, no need to do it
again here.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -86,7 +86,7 @@ include $(SRC_PATH)/common.mak FF_EXTRALIBS := $(FFEXTRALIBS) FF_DEP_LIBS := $(DEP_LIBS) -all: $(FF_DEP_LIBS) $(PROGS) +all: $(PROGS) $(TOOLS): %$(EXESUF): %.o $(LD) $(LDFLAGS) -o $@ $< $(ELIBS) |