doc/examples: rename LDFLAGS to LDLIBS.

This commit is contained in:
Clément Bœsch 2012-05-09 23:05:12 +02:00
parent 4522df52aa
commit 9a19341e6e
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
# use pkg-config for getting CFLAGS abd LDFLAGS
# use pkg-config for getting CFLAGS abd LDLIBS
FFMPEG_LIBS= libavdevice \
libavformat \
libavfilter \
@ -7,7 +7,7 @@ FFMPEG_LIBS= libavdevice \
libavutil \
CFLAGS+=-Wall $(shell pkg-config --cflags $(FFMPEG_LIBS))
LDFLAGS+=$(shell pkg-config --libs $(FFMPEG_LIBS))
LDLIBS+=$(shell pkg-config --libs $(FFMPEG_LIBS))
EXAMPLES= decoding_encoding \
filtering_video \
@ -18,7 +18,7 @@ EXAMPLES= decoding_encoding \
OBJS=$(addsuffix .o,$(EXAMPLES))
%: %.o
$(CC) $< $(LDFLAGS) -o $@
$(CC) $< $(LDLIBS) -o $@
%.o: %.c
$(CC) $< $(CFLAGS) -c -o $@