Imported Debian version 2.5.3~trusty1
[deb_ffmpeg.git] / ffmpeg / doc / examples / Makefile
CommitLineData
2ba45a60
DM
1# use pkg-config for getting CFLAGS and LDLIBS
2FFMPEG_LIBS= libavdevice \
3 libavformat \
4 libavfilter \
5 libavcodec \
6 libswresample \
7 libswscale \
8 libavutil \
9
10CFLAGS += -Wall -g
11CFLAGS := $(shell pkg-config --cflags $(FFMPEG_LIBS)) $(CFLAGS)
12LDLIBS := $(shell pkg-config --libs $(FFMPEG_LIBS)) $(LDLIBS)
13
14EXAMPLES= avio_reading \
15 decoding_encoding \
16 demuxing_decoding \
17 extract_mvs \
18 filtering_video \
19 filtering_audio \
20 metadata \
21 muxing \
22 remuxing \
23 resampling_audio \
24 scaling_video \
25 transcode_aac \
26 transcoding \
27
28OBJS=$(addsuffix .o,$(EXAMPLES))
29
30# the following examples make explicit use of the math library
31avcodec: LDLIBS += -lm
0e279ba6 32decoding_encoding: LDLIBS += -lm
2ba45a60
DM
33muxing: LDLIBS += -lm
34resampling_audio: LDLIBS += -lm
35
36.phony: all clean-test clean
37
38all: $(OBJS) $(EXAMPLES)
39
40clean-test:
41 $(RM) test*.pgm test.h264 test.mp2 test.sw test.mpg
42
43clean: clean-test
44 $(RM) $(EXAMPLES) $(OBJS)