From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KiEbo-0003so-2g for qemu-devel@nongnu.org; Tue, 23 Sep 2008 16:35:44 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KiEbm-0003s4-CY for qemu-devel@nongnu.org; Tue, 23 Sep 2008 16:35:43 -0400 Received: from [199.232.76.173] (port=49646 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KiEbm-0003rx-38 for qemu-devel@nongnu.org; Tue, 23 Sep 2008 16:35:42 -0400 Received: from moutng.kundenserver.de ([212.227.126.186]:55126) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KiEbl-0004Ck-Qw for qemu-devel@nongnu.org; Tue, 23 Sep 2008 16:35:42 -0400 Message-ID: <48D9531A.3070502@mail.berlios.de> Date: Tue, 23 Sep 2008 22:35:38 +0200 From: Stefan Weil MIME-Version: 1.0 Subject: [Qemu-devel] [PATCH] Add missing dependencies for qemu-doc.* Content-Type: multipart/mixed; boundary="------------030403030206090703020204" Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU Developers This is a multi-part message in MIME format. --------------030403030206090703020204 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit This patch fixes some items in Makefile: * remove duplicate entries from .PHONY * add missing entries to .PHONY * sort entries in .PHONY alphabetically * add missing dependencies for qemu-doc.* targets Please apply it to svn trunk. Thanks Stefan --------------030403030206090703020204 Content-Type: text/x-diff; name="Makefile.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="Makefile.patch" Remove duplicate entries from .PHONY, add missing entries and sort the rest. Add missing dependencies for qemu-doc.* targets. Signed-off-by: Stefan Weil Index: Makefile =================================================================== --- Makefile (Revision 5305) +++ Makefile (Arbeitskopie) @@ -2,8 +2,8 @@ include config-host.mak -.PHONY: all clean distclean dvi info install install-doc tar tarbin \ - speed test html dvi info +.PHONY: all clean cscope distclean dvi html info install install-doc \ + recurse-all speed tar tarbin test VPATH=$(SRC_PATH):$(SRC_PATH)/hw @@ -32,7 +32,7 @@ LIBS+=-lwinmm -lws2_32 -liphlpapi endif -all: $(TOOLS) $(DOCS) recurse-all +all: $(TOOLS) $(DOCS) recurse-all SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS)) @@ -288,6 +288,8 @@ html: qemu-doc.html qemu-tech.html +qemu-doc.dvi qemu-doc.html qemu-doc.info: qemu-img.texi qemu-nbd.texi + VERSION ?= $(shell cat VERSION) FILE = qemu-$(VERSION) --------------030403030206090703020204--