[SCM] libav/experimental: Prettify make output for documentation

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 17:03:58 UTC 2013


The following commit has been merged in the experimental branch:
commit 86be2bc36f24ffc92d5474fca00465494ec33cef
Author: Måns Rullgård <mans at mansr.com>
Date:   Wed Mar 10 02:56:50 2010 +0000

    Prettify make output for documentation
    
    Originally committed as revision 22418 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/Makefile b/Makefile
index 1eb60fe..70d23af 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)
 
diff --git a/common.mak b/common.mak
index fae6b1b..46525b5 100644
--- a/common.mak
+++ b/common.mak
@@ -25,6 +25,7 @@ BRIEF  = CC AS YASM AR LD HOSTCC RANLIB STRIP CP
 SILENT = DEPCC YASMDEP RM
 MSG    = $@
 G      = @$(call ECHO,GEN,$@);
+M      = @$(call ECHO,$(MSG),$@);
 $(foreach VAR,$(BRIEF), \
     $(eval $(VAR) = @$$(call ECHO,$(VAR),$$(MSG)); $($(VAR))))
 $(foreach VAR,$(SILENT),$(eval $(VAR) = @$($(VAR))))

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list