mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
compiling using nonstd include/library locations / add LDFLAGS to a few places patch by (Niki W. Waibel - nikiwaibel)
Originally committed as revision 4429 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
committed by
Michael Niedermayer
parent
c6fa36cf58
commit
56b04ceb47
+3
-3
@@ -30,13 +30,13 @@ install:
|
||||
install -m 755 $(HOOKS) "$(libdir)/vhook"
|
||||
|
||||
imlib2.so: imlib2.o
|
||||
$(CC) -g -o $@ $(SHFLAGS) $< -lImlib2
|
||||
$(CC) $(LDFLAGS) -g -o $@ $(SHFLAGS) $< -lImlib2
|
||||
|
||||
drawtext.so: drawtext.o
|
||||
$(CC) -g -o $@ $(SHFLAGS) $< `freetype-config --libs`
|
||||
$(CC) $(LDFLAGS) -g -o $@ $(SHFLAGS) $< `freetype-config --libs`
|
||||
|
||||
%.so: %.o
|
||||
$(CC) -g -o $@ $(SHFLAGS) $<
|
||||
$(CC) $(LDFLAGS) -g -o $@ $(SHFLAGS) $<
|
||||
|
||||
clean:
|
||||
rm -f *.o *.d .depend *.so *~
|
||||
|
||||
Reference in New Issue
Block a user