From patchwork Wed Sep 16 09:26:08 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Avi Kivity X-Patchwork-Id: 47887 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n8G9Quxc009707 for ; Wed, 16 Sep 2009 09:26:56 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932095AbZIPJ0p (ORCPT ); Wed, 16 Sep 2009 05:26:45 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1758519AbZIPJ0n (ORCPT ); Wed, 16 Sep 2009 05:26:43 -0400 Received: from mx1.redhat.com ([209.132.183.28]:60820 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758328AbZIPJ0M (ORCPT ); Wed, 16 Sep 2009 05:26:12 -0400 Received: from int-mx05.intmail.prod.int.phx2.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.18]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n8G9QF6p010897 for ; Wed, 16 Sep 2009 05:26:15 -0400 Received: from cleopatra.tlv.redhat.com (cleopatra.tlv.redhat.com [10.35.255.11]) by int-mx05.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n8G9QDUu015553; Wed, 16 Sep 2009 05:26:15 -0400 Received: from localhost.localdomain (cleopatra.tlv.redhat.com [10.35.255.11]) by cleopatra.tlv.redhat.com (Postfix) with ESMTP id 52955250AE3; Wed, 16 Sep 2009 12:26:12 +0300 (IDT) From: Avi Kivity To: Marcelo Tosatti Cc: kvm@vger.kernel.org Subject: [PATCH QEMU-KVM 33/34] test: Fix compilation rule for assembly files wrt autodependencies Date: Wed, 16 Sep 2009 12:26:08 +0300 Message-Id: <1253093169-1423-34-git-send-email-avi@redhat.com> In-Reply-To: <1253093169-1423-1-git-send-email-avi@redhat.com> References: <1253093169-1423-1-git-send-email-avi@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.18 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org Only compile the first dependency (the source file), not the rest (headers). Signed-off-by: Avi Kivity --- kvm/user/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/kvm/user/Makefile b/kvm/user/Makefile index d9fbf17..ed462bb 100644 --- a/kvm/user/Makefile +++ b/kvm/user/Makefile @@ -52,7 +52,7 @@ $(libcflat): $(cflatobjs) $(AR) rcs $@ $^ %.o: %.S - $(CC) $(CFLAGS) -c -nostdlib -o $@ $^ + $(CC) $(CFLAGS) -c -nostdlib -o $@ $< -include .*.d