LDFLAGS_$@ contains libs, not LDFLAGS, rename it accordingly.
Originally committed as revision 6193 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
529dd3c9ea
commit
3c57374894
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user