summaryrefslogtreecommitdiff
path: root/doc/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'doc/Makefile')
-rw-r--r--doc/Makefile11
1 files changed, 9 insertions, 2 deletions
diff --git a/doc/Makefile b/doc/Makefile
index ac344908e8..d472dc3297 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -1,7 +1,14 @@
-all: ffmpeg-doc.html faq.html ffserver-doc.html hooks.html
+all: ffmpeg-doc.html faq.html ffserver-doc.html ffplay-doc.html hooks.html \
+ ffmpeg.1 ffserver.1 ffplay.1
%.html: %.texi Makefile
texi2html -monolithic -number $<
+%.pod: %-doc.texi
+ ./texi2pod.pl $< $@
+
+%.1: %.pod
+ pod2man --section=1 --center=" " --release=" " $< > $@
+
clean:
- rm -f *.html
+ rm -f *.html *.pod *.1