summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 1eb60fe5b0..70d23af0dd 100644
--- a/Makefile
+++ b/Makefile
@@ -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)