Browse Source

Move required libs after the object file for the shared lib compilation.

Fixes Cygwin build as reported by Victor Paesa.

Originally committed as revision 6192 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Diego Biurrun 19 years ago
parent
commit
529dd3c9ea
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      vhook/Makefile

+ 1
- 1
vhook/Makefile View File

@@ -35,7 +35,7 @@ uninstall:
-rmdir "$(shlibdir)/vhook/"

%$(SLIBSUF): %.o
$(CC) $(LDFLAGS_$@) $(LDFLAGS) -g -o $@ $(VHOOKSHFLAGS) $<
$(CC) $(LDFLAGS) -g -o $@ $(VHOOKSHFLAGS) $< $(LDFLAGS_$@)

clean:
rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll


Loading…
Cancel
Save