From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:33868) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SpdQB-0005El-Ip for qemu-devel@nongnu.org; Fri, 13 Jul 2012 06:48:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SpdQ4-0006lH-1Q for qemu-devel@nongnu.org; Fri, 13 Jul 2012 06:48:27 -0400 Received: from e06smtp11.uk.ibm.com ([195.75.94.107]:58982) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SpdQ3-0006gS-Ha for qemu-devel@nongnu.org; Fri, 13 Jul 2012 06:48:19 -0400 Received: from /spool/local by e06smtp11.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 13 Jul 2012 11:38:15 +0100 Received: from d06av02.portsmouth.uk.ibm.com (d06av02.portsmouth.uk.ibm.com [9.149.37.228]) by d06nrmr1407.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q6DAc9h22314398 for ; Fri, 13 Jul 2012 11:38:09 +0100 Received: from d06av02.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av02.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q6DAc88N018521 for ; Fri, 13 Jul 2012 04:38:08 -0600 From: Stefan Hajnoczi Date: Fri, 13 Jul 2012 11:38:02 +0100 Message-Id: <1342175882-4995-6-git-send-email-stefanha@linux.vnet.ibm.com> In-Reply-To: <1342175882-4995-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1342175882-4995-1-git-send-email-stefanha@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH 5/5] make: Remove 'build-all' rule List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: Stefan Weil , qemu-devel@nongnu.org, Stefan Hajnoczi From: Stefan Weil It is not needed, because the 'all' rule does the same. Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 34d6a9e..6eeabd0 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ BUILD_DIR=$(CURDIR) # All following code might depend on configuration variables ifneq ($(wildcard config-host.mak),) # Put the all: rule here so that config-host.mak can contain dependencies. -all: build-all +all: include config-host.mak include $(SRC_PATH)/rules.mak config-host.mak: $(SRC_PATH)/configure @@ -31,7 +31,7 @@ Makefile: ; configure: ; .PHONY: all clean cscope distclean dvi html info install install-doc \ - pdf recurse-all speed tar tarbin test build-all + pdf recurse-all speed tar tarbin test $(call set-vpath, $(SRC_PATH)) @@ -82,7 +82,7 @@ defconfig: -include config-all-devices.mak -build-all: $(DOCS) $(TOOLS) $(HELPERS-y) recurse-all +all: $(DOCS) $(TOOLS) $(HELPERS-y) recurse-all config-host.h: config-host.h-timestamp config-host.h-timestamp: config-host.mak -- 1.7.10.4