From patchwork Mon Jan 30 10:27:33 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Kiszka X-Patchwork-Id: 138542 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 18CA3B6EF7 for ; Mon, 30 Jan 2012 21:28:01 +1100 (EST) Received: from localhost ([::1]:35184 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RroSr-0006ia-Mv for incoming@patchwork.ozlabs.org; Mon, 30 Jan 2012 05:27:57 -0500 Received: from eggs.gnu.org ([140.186.70.92]:56837) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RroSd-0006iJ-T6 for qemu-devel@nongnu.org; Mon, 30 Jan 2012 05:27:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RroSc-00061c-66 for qemu-devel@nongnu.org; Mon, 30 Jan 2012 05:27:43 -0500 Received: from david.siemens.de ([192.35.17.14]:34235) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RroSb-00061R-PN; Mon, 30 Jan 2012 05:27:42 -0500 Received: from mail1.siemens.de (localhost [127.0.0.1]) by david.siemens.de (8.13.6/8.13.6) with ESMTP id q0UARYuk011575; Mon, 30 Jan 2012 11:27:35 +0100 Received: from mchn199C.mchp.siemens.de ([139.25.109.49]) by mail1.siemens.de (8.13.6/8.13.6) with ESMTP id q0UARXfi025321; Mon, 30 Jan 2012 11:27:33 +0100 Message-ID: <4F267095.6010207@siemens.com> Date: Mon, 30 Jan 2012 11:27:33 +0100 From: Jan Kiszka User-Agent: Mozilla/5.0 (X11; U; Linux i686 (x86_64); de; rv:1.8.1.12) Gecko/20080226 SUSE/2.0.0.12-1.1 Thunderbird/2.0.0.12 Mnenhy/0.7.5.666 MIME-Version: 1.0 To: qemu-devel , qemu-trivial References: <4F1DA82F.4090808@siemens.com> <4F2297FB.2040508@siemens.com> In-Reply-To: <4F2297FB.2040508@siemens.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Received-From: 192.35.17.14 Cc: =?ISO-8859-1?Q?Andreas_F=E4rber?= , Stefan Hajnoczi Subject: [Qemu-devel] [PATCH v3] optionroms: Silence intermediate file removal 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 The build process of optionroms spits out an "rm ..." line. Moreover, it removes all .o files that can be handy for debugging purposes. So disable automatic intermediate removal. Signed-off-by: Jan Kiszka --- Changes in v3: - do not remove intermediate file manually, it breaks parallel build pc-bios/optionrom/Makefile | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/pc-bios/optionrom/Makefile b/pc-bios/optionrom/Makefile index 51da288..2caf7e6 100644 --- a/pc-bios/optionrom/Makefile +++ b/pc-bios/optionrom/Makefile @@ -16,6 +16,9 @@ QEMU_CFLAGS = $(CFLAGS) build-all: multiboot.bin linuxboot.bin +# suppress auto-removal of intermediate files +.SECONDARY: + %.img: %.o $(call quiet-command,$(LD) -Ttext 0 -e _start -s -o $@ $<," Building $(TARGET_DIR)$@")