1 # use pkg-config for getting CFLAGS and LDLIBS
2 FFMPEG_LIBS= libavdevice \
11 CFLAGS := $(shell pkg-config --cflags $(FFMPEG_LIBS)) $(CFLAGS)
12 LDLIBS := $(shell pkg-config --libs $(FFMPEG_LIBS)) $(LDLIBS)
14 EXAMPLES= avio_dir_cmd \
34 OBJS=$(addsuffix .o,$(EXAMPLES))
36 # the following examples make explicit use of the math library
37 avcodec: LDLIBS += -lm
38 encode_audio: LDLIBS += -lm
40 resampling_audio: LDLIBS += -lm
42 .phony: all clean-test clean
44 all: $(OBJS) $(EXAMPLES)
47 $(RM) test*.pgm test.h264 test.mp2 test.sw test.mpg
50 $(RM) $(EXAMPLES) $(OBJS)