From patchwork Wed Jun 6 06:36:08 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 163290 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 312A9B6FA3 for ; Wed, 6 Jun 2012 17:58:00 +1000 (EST) Received: from localhost ([::1]:54508 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sc9rY-0003pW-Fn for incoming@patchwork.ozlabs.org; Wed, 06 Jun 2012 02:37:00 -0400 Received: from eggs.gnu.org ([208.118.235.92]:39221) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sc9rJ-0003oe-6T for qemu-devel@nongnu.org; Wed, 06 Jun 2012 02:36:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Sc9rH-00028o-HA for qemu-devel@nongnu.org; Wed, 06 Jun 2012 02:36:44 -0400 Received: from mail-pz0-f45.google.com ([209.85.210.45]:45050) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sc9rH-00028S-8K for qemu-devel@nongnu.org; Wed, 06 Jun 2012 02:36:43 -0400 Received: by dadv2 with SMTP id v2so9050407dad.4 for ; Tue, 05 Jun 2012 23:36:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=NHlViVb6APUCm2jr/6dhy9O5qsqN+yxYBmQHjOn3ug0=; b=sIDGu2Rgjl1ZwtchPcwUc2sMgC6h9h6GQOPfEAyDRNAdvSe8SFKBMKiI/H+jOrCprQ /WJiSZqA+yPk9efXeptE1ngCsuj2Toml5BR2z0XTspFdpjRkpiIJunlNGCWuZzo+nCut DmUHNdkQBN5BoByFhdtZvMEM2MYn8hORdqyLZikl61C1YU305nV2PuoeZuEgxCzlXdbQ KVDZ19IOYgOvEzgTrdMypXR3m+057jYykOsSG5Wk398g3wwhAWTdotPf9N1sIxYMgVfa C+93YgwC9xMauF1s2ddwPoLt2/gnc11yBpIfDBON5lYMB0ih51+EGlO6s+nfKQ4Sx+/8 Vsrw== Received: by 10.68.240.71 with SMTP id vy7mr28458205pbc.106.1338964601184; Tue, 05 Jun 2012 23:36:41 -0700 (PDT) Received: from yakj.usersys.redhat.com.usersys.redhat.com (p40081-ipngn402hodogaya.kanagawa.ocn.ne.jp. [180.23.161.81]) by mx.google.com with ESMTPS id py5sm1479093pbb.1.2012.06.05.23.36.39 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 05 Jun 2012 23:36:40 -0700 (PDT) From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Wed, 6 Jun 2012 08:36:08 +0200 Message-Id: <1338964592-22223-2-git-send-email-pbonzini@redhat.com> X-Mailer: git-send-email 1.7.10.1 In-Reply-To: <1338964592-22223-1-git-send-email-pbonzini@redhat.com> References: <1338964592-22223-1-git-send-email-pbonzini@redhat.com> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.210.45 Cc: anthony@codemonkey.ws Subject: [Qemu-devel] [PATCH v2 01/25] build: remove trace-nested-y 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 Signed-off-by: Paolo Bonzini --- Makefile.objs | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/Makefile.objs b/Makefile.objs index 70c5c79..1daa92c 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -425,16 +425,11 @@ ifneq ($(TRACE_BACKEND),dtrace) trace-obj-y = trace.o endif -trace-nested-$(CONFIG_TRACE_DEFAULT) += default.o - -trace-nested-$(CONFIG_TRACE_SIMPLE) += simple.o +trace-obj-$(CONFIG_TRACE_DEFAULT) += trace/default.o +trace-obj-$(CONFIG_TRACE_SIMPLE) += trace/simple.o trace-obj-$(CONFIG_TRACE_SIMPLE) += qemu-timer-common.o - -trace-nested-$(CONFIG_TRACE_STDERR) += stderr.o - -trace-nested-y += control.o - -trace-obj-y += $(addprefix trace/, $(trace-nested-y)) +trace-obj-$(CONFIG_TRACE_STDERR) += trace/stderr.o +trace-obj-y += trace/control.o $(trace-obj-y): $(GENERATED_HEADERS)