From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:42112) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SclyD-0008FM-MJ for qemu-devel@nongnu.org; Thu, 07 Jun 2012 19:18:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SclyC-0001zN-3f for qemu-devel@nongnu.org; Thu, 07 Jun 2012 19:18:25 -0400 Received: from mail-pb0-f45.google.com ([209.85.160.45]:53325) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SclyB-0001zG-Rs for qemu-devel@nongnu.org; Thu, 07 Jun 2012 19:18:24 -0400 Received: by pbbro12 with SMTP id ro12so1896464pbb.4 for ; Thu, 07 Jun 2012 16:18:21 -0700 (PDT) Sender: Paolo Bonzini Message-ID: <4FD136B9.2060107@redhat.com> Date: Fri, 08 Jun 2012 01:18:17 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <1339054814-20939-1-git-send-email-pbonzini@redhat.com> <1339054814-20939-7-git-send-email-pbonzini@redhat.com> In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v3 06/29] build: move libobj-y variable to nested Makefile.objs List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Blue Swirl Cc: qemu-devel@nongnu.org, anthony@codemonkey.ws Il 07/06/2012 23:10, Blue Swirl ha scritto: >> diff --git a/target-sparc/Makefile.objs b/target-sparc/Makefile.objs >> index c574c9e..3556d13 100644 >> --- a/target-sparc/Makefile.objs >> +++ b/target-sparc/Makefile.objs >> @@ -1 +1,7 @@ >> -# still empty >> +obj-y += helper.o cpu.o >> +obj-y += fop_helper.o cc_helper.o win_helper.o mmu_helper.o ldst_helper.o >> +obj-$(TARGET_SPARC) += int32_helper.o >> +obj-$(TARGET_SPARC64) += int64_helper.o >> +obj-$(TARGET_SPARC64) += vis_helper.o >> + >> +$(obj)/op_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) > > Please remove. Fixed, updated branch to commit 067ca6b. Thanks. Paolo