summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2010-03-14 19:48:09 +0000
committerMåns Rullgård <mans@mansr.com>2010-03-14 19:48:09 +0000
commit7732f641ffd23670b9e84f07a0ec3b3b360b8a64 (patch)
treed5a89b9da3af482dde60804d8b295dba4b464caf /Makefile
parent062777b3436cb51c7e4908b54dc899c0a42518f7 (diff)
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--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 6507d9344d..f7a8bd6a4c 100644
--- a/Makefile
+++ b/Makefile
@@ -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=" " $< > $@