diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-09-07 23:06:14 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-09-07 23:06:14 +0000 |
commit | 3c573748946cfbd68334f071069f6b23d5cffe69 (patch) | |
tree | cb3299078d3e8114b469f74eec4f112fa0097042 /vhook | |
parent | 529dd3c9ea61daff3efd090a2c5b2af9b1726df5 (diff) | |
download | ffmpeg-3c573748946cfbd68334f071069f6b23d5cffe69.tar.gz |
LDFLAGS_$@ contains libs, not LDFLAGS, rename it accordingly.
Originally committed as revision 6193 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'vhook')
-rw-r--r-- | vhook/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vhook/Makefile b/vhook/Makefile index 60ff0bede0..3bb5561066 100644 --- a/vhook/Makefile +++ b/vhook/Makefile @@ -10,13 +10,13 @@ ALLHOOKS=$(HOOKS) imlib2$(SLIBSUF) drawtext$(SLIBSUF) ifeq ($(HAVE_IMLIB2),yes) HOOKS += imlib2$(SLIBSUF) - LDFLAGS_imlib2$(SLIBSUF) = -lImlib2 + LIBS_imlib2$(SLIBSUF) = -lImlib2 endif ifeq ($(HAVE_FREETYPE2),yes) HOOKS += drawtext$(SLIBSUF) CFLAGS += `freetype-config --cflags` - LDFLAGS_drawtext$(SLIBSUF) = `freetype-config --libs` + LIBS_drawtext$(SLIBSUF) = `freetype-config --libs` endif SRCS := $(HOOKS:$(SLIBSUF)=.c) @@ -35,7 +35,7 @@ uninstall: -rmdir "$(shlibdir)/vhook/" %$(SLIBSUF): %.o - $(CC) $(LDFLAGS) -g -o $@ $(VHOOKSHFLAGS) $< $(LDFLAGS_$@) + $(CC) $(LDFLAGS) -g -o $@ $(VHOOKSHFLAGS) $< $(LIBS_$@) clean: rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll |