]> git.sesse.net Git - ffmpeg/blob - doc/Makefile
reorder pts into dts support
[ffmpeg] / doc / Makefile
1 -include ../config.mak
2
3 VPATH=$(SRC_PATH_BARE)/doc
4
5 all: ffmpeg-doc.html faq.html ffserver-doc.html ffplay-doc.html hooks.html \
6      ffmpeg.1 ffserver.1 ffplay.1
7
8 %.html: %.texi Makefile
9         texi2html -monolithic -number $<
10
11 %.pod: %-doc.texi
12         ./texi2pod.pl $< $@
13
14 %.1: %.pod
15         pod2man --section=1 --center=" " --release=" " $< > $@
16
17 clean:
18         rm -f *.html *.pod *.1
19
20 .PHONY: all clean