diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-14 19:48:09 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-14 19:48:09 +0000 |
commit | 7732f641ffd23670b9e84f07a0ec3b3b360b8a64 (patch) | |
tree | d5a89b9da3af482dde60804d8b295dba4b464caf /Makefile | |
parent | 062777b3436cb51c7e4908b54dc899c0a42518f7 (diff) | |
download | ffmpeg-7732f641ffd23670b9e84f07a0ec3b3b360b8a64.tar.gz |
Fix brief make output for generated tables
Originally committed as revision 22526 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -105,15 +105,15 @@ 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: TAG = HTML doc/%.html: doc/%.texi $(M)cd doc && texi2html -monolithic -number $(<:doc/%=%) -doc/%.pod: MSG = POD +doc/%.pod: TAG = POD doc/%.pod: doc/%-doc.texi $(M)doc/texi2pod.pl $< $@ -doc/%.1: MSG = MAN +doc/%.1: TAG = MAN doc/%.1: doc/%.pod $(M)pod2man --section=1 --center=" " --release=" " $< > $@ |