diff options
author | Philip Gladstone | 2002-05-09 01:04:19 +0000 |
---|---|---|
committer | Philip Gladstone | 2002-05-09 01:04:19 +0000 |
commit | c6a8f2ce07c3436ab059d2f60378c1dd19b4840b (patch) | |
tree | f7f976e220b7d84c8cb1adf665375186bc5ce239 /Makefile | |
parent | a69b930cd36503d80e7362f91493e306cd800aca (diff) |
Move the EXTRALIBS to the end of the link line where they actually get used!
Originally committed as revision 452 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 $< $@ |