From e99c4e1037061759cdfd9b7fe2a1e7ed67673fa9 Mon Sep 17 00:00:00 2001 From: Fabrice Bellard Date: Sun, 24 Aug 2003 11:16:29 +0000 Subject: added ffplay documentation - added automatic man page generation for ffmpeg, ffserver and ffplay Originally committed as revision 2136 to svn://svn.ffmpeg.org/ffmpeg/trunk --- doc/Makefile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'doc/Makefile') 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 -- cgit v1.2.3