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
pull/126/head
Diego Biurrun 18 years ago
parent a41104f86a
commit 529dd3c9ea
  1. 2
      vhook/Makefile

@ -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