2012-05-12 19:08:26 +03:00
|
|
|
# use pkg-config for getting CFLAGS and LDLIBS
|
2012-05-08 19:22:28 +03:00
|
|
|
FFMPEG_LIBS= libavdevice \
|
|
|
|
libavformat \
|
|
|
|
libavfilter \
|
|
|
|
libavcodec \
|
2012-05-10 00:45:16 +03:00
|
|
|
libswresample \
|
2012-05-08 19:22:28 +03:00
|
|
|
libswscale \
|
|
|
|
libavutil \
|
|
|
|
|
2012-05-12 19:06:26 +03:00
|
|
|
CFLAGS += -Wall -O2 -g
|
2012-08-24 17:49:04 +03:00
|
|
|
CFLAGS := $(shell pkg-config --cflags $(FFMPEG_LIBS)) $(CFLAGS)
|
|
|
|
LDLIBS := $(shell pkg-config --libs $(FFMPEG_LIBS)) $(LDLIBS)
|
2011-05-29 13:47:40 +03:00
|
|
|
|
2012-05-08 19:22:28 +03:00
|
|
|
EXAMPLES= decoding_encoding \
|
2012-08-30 00:41:30 +03:00
|
|
|
demuxing \
|
2012-05-08 19:22:28 +03:00
|
|
|
filtering_video \
|
|
|
|
filtering_audio \
|
|
|
|
metadata \
|
|
|
|
muxing \
|
2012-08-21 15:43:51 +03:00
|
|
|
scaling_video \
|
2011-05-29 13:47:40 +03:00
|
|
|
|
|
|
|
OBJS=$(addsuffix .o,$(EXAMPLES))
|
|
|
|
|
2012-05-10 00:06:43 +03:00
|
|
|
# the following examples make explicit use of the math library
|
|
|
|
decoding_encoding: LDLIBS += -lm
|
|
|
|
muxing: LDLIBS += -lm
|
|
|
|
|
2012-08-23 21:17:25 +03:00
|
|
|
.phony: all clean-test clean
|
2011-05-29 13:47:40 +03:00
|
|
|
|
|
|
|
all: $(OBJS) $(EXAMPLES)
|
|
|
|
|
2012-08-23 21:17:25 +03:00
|
|
|
clean-test:
|
2012-08-30 23:37:44 +03:00
|
|
|
$(RM) test*.pgm test.h264 test.mp2 test.sw test.mpg
|
2012-08-23 21:17:25 +03:00
|
|
|
|
|
|
|
clean: clean-test
|
2012-08-28 21:06:45 +03:00
|
|
|
$(RM) $(EXAMPLES) $(OBJS)
|