From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LwbuA-0006FL-58 for qemu-devel@nongnu.org; Wed, 22 Apr 2009 08:50:22 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Lwbu5-0006EL-Cr for qemu-devel@nongnu.org; Wed, 22 Apr 2009 08:50:21 -0400 Received: from [199.232.76.173] (port=47179 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Lwbu5-0006EG-74 for qemu-devel@nongnu.org; Wed, 22 Apr 2009 08:50:17 -0400 Received: from mx2.redhat.com ([66.187.237.31]:50629) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Lwbu4-0005Ly-Hh for qemu-devel@nongnu.org; Wed, 22 Apr 2009 08:50:16 -0400 Message-ID: <49EF1281.3050400@redhat.com> Date: Wed, 22 Apr 2009 14:50:09 +0200 From: Gerd Hoffmann MIME-Version: 1.0 Subject: Re: [Qemu-devel] [PATCH] add hw/Makefile ... References: <49EEFB38.9060903@redhat.com> <200904221417.19003.Christoph.Egger@amd.com> In-Reply-To: <200904221417.19003.Christoph.Egger@amd.com> Content-Type: multipart/mixed; boundary="------------030602000109010406020801" List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Christoph Egger Cc: qemu-devel@nongnu.org This is a multi-part message in MIME format. --------------030602000109010406020801 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit On 04/22/09 14:17, Christoph Egger wrote: > This is wrong. Use $(MAKE) or you break platforms where you have to use > "gmake", otherwise. Updated patch attached. cheers, Gerd --------------030602000109010406020801 Content-Type: text/plain; name="0003-add-hw-Makefile.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0003-add-hw-Makefile.patch" >>From f18c599455383522b3901d0585befc2afa8cfe93 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Wed, 22 Apr 2009 12:39:24 +0200 Subject: [PATCH 3/5] add hw/Makefile So typing "make" in hw/ does something useful. Signed-off-by: Gerd Hoffmann --- hw/Makefile | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) create mode 100644 hw/Makefile diff --git a/hw/Makefile b/hw/Makefile new file mode 100644 index 0000000..70ea257 --- /dev/null +++ b/hw/Makefile @@ -0,0 +1,2 @@ +all: + $(MAKE) -C .. $@ -- 1.6.2.2 --------------030602000109010406020801--