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: 5781 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 125E123E01 for ; Thu, 15 Dec 2011 18:28:57 +0000 (UTC) Received: from mail-ey0-f180.google.com (mail-ey0-f180.google.com [209.85.215.180]) by fiordland.canonical.com (Postfix) with ESMTP id 047E1A18191 for ; Thu, 15 Dec 2011 18:28:57 +0000 (UTC) Received: by eaak10 with SMTP id k10so2603194eaa.11 for ; Thu, 15 Dec 2011 10:28:56 -0800 (PST) Received: by 10.204.157.12 with SMTP id z12mr2038947bkw.18.1323973736731; Thu, 15 Dec 2011 10:28:56 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.205.129.2 with SMTP id hg2cs49613bkc; Thu, 15 Dec 2011 10:28:56 -0800 (PST) Received: by 10.216.135.233 with SMTP id u83mr1459601wei.33.1323973735196; Thu, 15 Dec 2011 10:28:55 -0800 (PST) Received: from mnementh.archaic.org.uk (mnementh.archaic.org.uk. [81.2.115.146]) by mx.google.com with ESMTPS id n83si4461625weq.37.2011.12.15.10.28.54 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 15 Dec 2011 10:28:55 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 81.2.115.146 as permitted sender) client-ip=81.2.115.146; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 81.2.115.146 as permitted sender) smtp.mail=pm215@archaic.org.uk 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 Cc: patches@linaro.org, qemu-trivial@nongnu.org Subject: [PATCH] Makefile.target: Remove unnecessary dependency rules 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 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)