From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LqWKw-0002c7-4w for qemu-devel@nongnu.org; Sun, 05 Apr 2009 13:40:50 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LqWKu-0002bN-Tu for qemu-devel@nongnu.org; Sun, 05 Apr 2009 13:40:49 -0400 Received: from [199.232.76.173] (port=34521 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LqWKu-0002bE-EJ for qemu-devel@nongnu.org; Sun, 05 Apr 2009 13:40:48 -0400 Received: from savannah.gnu.org ([199.232.41.3]:40633 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LqWKu-00047J-3e for qemu-devel@nongnu.org; Sun, 05 Apr 2009 13:40:48 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1LqWKt-00069y-Ja for qemu-devel@nongnu.org; Sun, 05 Apr 2009 17:40:47 +0000 Received: from aliguori by cvs.savannah.gnu.org with local (Exim 4.69) (envelope-from ) id 1LqWKt-00069u-9o for qemu-devel@nongnu.org; Sun, 05 Apr 2009 17:40:47 +0000 MIME-Version: 1.0 Errors-To: aliguori Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Anthony Liguori Message-Id: Date: Sun, 05 Apr 2009 17:40:47 +0000 Subject: [Qemu-devel] [6979] build system: silent generation of doc files and qemu-options.h ( Jan Kiszka) Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Revision: 6979 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6979 Author: aliguori Date: 2009-04-05 17:40:46 +0000 (Sun, 05 Apr 2009) Log Message: ----------- build system: silent generation of doc files and qemu-options.h (Jan Kiszka) Signed-off-by: Jan Kiszka Signed-off-by: Anthony Liguori Modified Paths: -------------- trunk/Makefile trunk/Makefile.target Modified: trunk/Makefile =================================================================== --- trunk/Makefile 2009-04-05 17:40:43 UTC (rev 6978) +++ trunk/Makefile 2009-04-05 17:40:46 UTC (rev 6979) @@ -283,28 +283,34 @@ # documentation %.html: %.texi - texi2html -I=. -monolithic -number $< + $(call quiet-command,texi2html -I=. -monolithic -number $<," GEN $@") %.info: %.texi - makeinfo -I . $< -o $@ + $(call quiet-command,makeinfo -I . $< -o $@," GEN $@") %.dvi: %.texi - texi2dvi -I . $< + $(call quiet-command,texi2dvi -I . $<," GEN $@") qemu-options.texi: $(SRC_PATH)/qemu-options.hx - sh $(SRC_PATH)/hxtool -t < $< > $@ + $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@") qemu.1: qemu-doc.texi - perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod - pod2man --section=1 --center=" " --release=" " qemu.pod > $@ + $(call quiet-command, \ + perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod && \ + pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \ + " GEN $@") qemu-img.1: qemu-img.texi - perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-img.pod - pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@ + $(call quiet-command, \ + perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-img.pod && \ + pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \ + " GEN $@") qemu-nbd.8: qemu-nbd.texi - perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod - pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@ + $(call quiet-command, \ + perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod && \ + pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \ + " GEN $@") info: qemu-doc.info qemu-tech.info Modified: trunk/Makefile.target =================================================================== --- trunk/Makefile.target 2009-04-05 17:40:43 UTC (rev 6978) +++ trunk/Makefile.target 2009-04-05 17:40:46 UTC (rev 6979) @@ -741,7 +741,7 @@ endif qemu-options.h: $(SRC_PATH)/qemu-options.hx - sh $(SRC_PATH)/hxtool -h < $< > $@ + $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@") clean: rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o qemu-options.h