From 529dd3c9ea61daff3efd090a2c5b2af9b1726df5 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Thu, 7 Sep 2006 23:04:26 +0000 Subject: [PATCH] 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 --- vhook/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vhook/Makefile b/vhook/Makefile index 25fdcf315c..60ff0bede0 100644 --- a/vhook/Makefile +++ b/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