diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-10 02:56:50 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-10 02:56:50 +0000 |
commit | 86be2bc36f24ffc92d5474fca00465494ec33cef (patch) | |
tree | df890a35da8a195fba81446b2fc99e05a02569d3 /Makefile | |
parent | b91cd80917b16313a2b110d8a98b7dff4ca86b6a (diff) | |
download | ffmpeg-86be2bc36f24ffc92d5474fca00465494ec33cef.tar.gz |
Prettify make output for documentation
Originally committed as revision 22418 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -93,14 +93,17 @@ documentation: $(addprefix doc/, developer.html faq.html ffmpeg-doc.html \ ffplay-doc.html ffprobe-doc.html ffserver-doc.html \ general.html libavfilter.html $(ALLMANPAGES)) +doc/%.html: MSG = HTML doc/%.html: doc/%.texi - cd doc && texi2html -monolithic -number $(<:doc/%=%) + $(M)cd doc && texi2html -monolithic -number $(<:doc/%=%) +doc/%.pod: MSG = POD doc/%.pod: doc/%-doc.texi - doc/texi2pod.pl $< $@ + $(M)doc/texi2pod.pl $< $@ +doc/%.1: MSG = MAN doc/%.1: doc/%.pod - pod2man --section=1 --center=" " --release=" " $< > $@ + $(M)pod2man --section=1 --center=" " --release=" " $< > $@ install: $(INSTALL_TARGETS-yes) |