Commit a96cb3cc authored by philipjsg's avatar philipjsg

Move the EXTRALIBS to the end of the link line where they actually get used!


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@452 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a09f4afb
......@@ -39,10 +39,10 @@ lib:
$(MAKE) -C libav all
ffmpeg$(EXE): ffmpeg.o libav/libav.a $(DEP_FFMPEG_LIB)
$(CC) $(LDFLAGS) $(EXTRALIBS) -o $@ $^ $(FFMPEG_LIB)
$(CC) $(LDFLAGS) -o $@ $^ $(FFMPEG_LIB) $(EXTRALIBS)
ffserver$(EXE): ffserver.o libav/libav.a $(DEP_FFMPEG_LIB)
$(CC) $(LDFLAGS) $(EXTRALIBS) -o $@ $^ $(FFMPEG_LIB)
$(CC) $(LDFLAGS) -o $@ $^ $(FFMPEG_LIB) $(EXTRALIBS)
ffplay: ffmpeg$(EXE)
ln -sf $< $@
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment