]> git.sesse.net Git - ffmpeg/blob - doc/examples/Makefile
Merge commit '88bd7fdc821aaa0cbcf44cf075c62aaa42121e3f'
[ffmpeg] / doc / examples / Makefile
1 # use pkg-config for getting CFLAGS and LDLIBS
2 FFMPEG_LIBS=    libavdevice                        \
3                 libavformat                        \
4                 libavfilter                        \
5                 libavcodec                         \
6                 libswresample                      \
7                 libswscale                         \
8                 libavutil                          \
9
10 CFLAGS += -Wall -O2 -g
11 CFLAGS := $(shell pkg-config --cflags $(FFMPEG_LIBS)) $(CFLAGS)
12 LDLIBS := $(shell pkg-config --libs $(FFMPEG_LIBS)) $(LDLIBS)
13
14 EXAMPLES=       decoding_encoding                  \
15                 demuxing                           \
16                 filtering_video                    \
17                 filtering_audio                    \
18                 metadata                           \
19                 muxing                             \
20                 resampling_audio                   \
21                 scaling_video                      \
22
23 OBJS=$(addsuffix .o,$(EXAMPLES))
24
25 # the following examples make explicit use of the math library
26 decoding_encoding: LDLIBS += -lm
27 muxing:            LDLIBS += -lm
28
29 .phony: all clean-test clean
30
31 all: $(OBJS) $(EXAMPLES)
32
33 clean-test:
34         $(RM) test*.pgm test.h264 test.mp2 test.sw test.mpg
35
36 clean: clean-test
37         $(RM) $(EXAMPLES) $(OBJS)