diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-08-24 11:16:29 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-08-24 11:16:29 +0000 |
commit | e99c4e1037061759cdfd9b7fe2a1e7ed67673fa9 (patch) | |
tree | 1560fec08bd5f8679000dbd41ef3c4b9e0848807 /doc/Makefile | |
parent | d6eb3c500aeab8ae9f138f8eb70d045ac47100ee (diff) | |
download | ffmpeg-e99c4e1037061759cdfd9b7fe2a1e7ed67673fa9.tar.gz |
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
Diffstat (limited to 'doc/Makefile')
-rw-r--r-- | doc/Makefile | 11 |
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 |