summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-09-07 23:04:26 +0000
committerDiego Biurrun <diego@biurrun.de>2006-09-07 23:04:26 +0000
commit529dd3c9ea61daff3efd090a2c5b2af9b1726df5 (patch)
tree49d8e07be3030dcefa903a6e368feb22a5873a5a
parenta41104f86a296299cd74f2878e08312b5079cc8f (diff)
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
-rw-r--r--vhook/Makefile2
1 files changed, 1 insertions, 1 deletions
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