From patchwork Thu Dec 15 18:28:52 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 131716 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 98ED81007D4 for ; Fri, 16 Dec 2011 05:29:07 +1100 (EST) Received: from localhost ([::1]:54760 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RbG3C-0005sW-W2 for incoming@patchwork.ozlabs.org; Thu, 15 Dec 2011 13:29:02 -0500 Received: from eggs.gnu.org ([140.186.70.92]:40730) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RbG37-0005sP-8Z for qemu-devel@nongnu.org; Thu, 15 Dec 2011 13:28:58 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RbG35-0002UH-Sj for qemu-devel@nongnu.org; Thu, 15 Dec 2011 13:28:57 -0500 Received: from mnementh.archaic.org.uk ([81.2.115.146]:59857) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RbG35-0002U5-J4; Thu, 15 Dec 2011 13:28:55 -0500 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.72) (envelope-from ) id 1RbG32-0005gp-KO; Thu, 15 Dec 2011 18:28:52 +0000 From: Peter Maydell To: qemu-devel@nongnu.org Date: Thu, 15 Dec 2011 18:28:52 +0000 Message-Id: <1323973732-21848-1-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.2.5 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 81.2.115.146 Cc: qemu-trivial@nongnu.org, patches@linaro.org Subject: [Qemu-devel] [PATCH] Makefile.target: Remove unnecessary dependency rules 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 Remove some dependency rules which aren't necessary (the automatically generated .d files cover all these). These were leftovers from dyngen days, when the object files also had a dependency on some generated files. Signed-off-by: Peter Maydell --- Makefile.target | 6 ------ 1 files changed, 0 insertions(+), 6 deletions(-) diff --git a/Makefile.target b/Makefile.target index 8be9b9a..3261383 100644 --- a/Makefile.target +++ b/Makefile.target @@ -92,12 +92,6 @@ tci-dis.o: QEMU_CFLAGS += -I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/tci $(libobj-y): $(GENERATED_HEADERS) -translate.o: translate.c cpu.h - -translate-all.o: translate-all.c cpu.h - -tcg/tcg.o: cpu.h - # HELPER_CFLAGS is used for all the code compiled with static register # variables op_helper.o ldst_helper.o user-exec.o: QEMU_CFLAGS += $(HELPER_CFLAGS)