From patchwork Mon Jul 9 18:36:36 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Weil X-Patchwork-Id: 169918 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 5618E2C0203 for ; Tue, 10 Jul 2012 04:36:51 +1000 (EST) Received: from localhost ([::1]:45063 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SoIpE-00068L-DV for incoming@patchwork.ozlabs.org; Mon, 09 Jul 2012 14:36:48 -0400 Received: from eggs.gnu.org ([208.118.235.92]:49661) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SoIp7-00067y-Fu for qemu-devel@nongnu.org; Mon, 09 Jul 2012 14:36:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SoIp5-0000T4-NA for qemu-devel@nongnu.org; Mon, 09 Jul 2012 14:36:41 -0400 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:55399) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SoIp5-0000Su-GW; Mon, 09 Jul 2012 14:36:39 -0400 Received: from localhost (v220110690675601.yourvserver.net.local [127.0.0.1]) by v220110690675601.yourvserver.net (Postfix) with ESMTP id 7DB6672800C0; Mon, 9 Jul 2012 20:36:37 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at weilnetz.de Received: from v220110690675601.yourvserver.net ([127.0.0.1]) by localhost (v220110690675601.yourvserver.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id UXy8kf3JkMCk; Mon, 9 Jul 2012 20:36:37 +0200 (CEST) Received: by v220110690675601.yourvserver.net (Postfix, from userid 1000) id 02DBF72800C1; Mon, 9 Jul 2012 20:36:36 +0200 (CEST) From: Stefan Weil To: qemu-trivial@nongnu.org Date: Mon, 9 Jul 2012 20:36:36 +0200 Message-Id: <1341858996-16953-1-git-send-email-sw@weilnetz.de> X-Mailer: git-send-email 1.7.10 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 78.47.199.172 Cc: Stefan Weil , qemu-devel@nongnu.org Subject: [Qemu-devel] [PATCH] make: Remove 'build-all' rule X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org It is not needed, because the 'all' rule does the same. Signed-off-by: Stefan Weil --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index bad0e31..76dae56 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