From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LwaM6-0006qD-Rp for qemu-devel@nongnu.org; Wed, 22 Apr 2009 07:11:06 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LwaM2-0006kR-9C for qemu-devel@nongnu.org; Wed, 22 Apr 2009 07:11:06 -0400 Received: from [199.232.76.173] (port=37739 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LwaM2-0006k2-1H for qemu-devel@nongnu.org; Wed, 22 Apr 2009 07:11:02 -0400 Received: from mx2.redhat.com ([66.187.237.31]:51918) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LwaM1-0007DB-8Z for qemu-devel@nongnu.org; Wed, 22 Apr 2009 07:11:01 -0400 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n3MBB0BK028504 for ; Wed, 22 Apr 2009 07:11:00 -0400 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx2.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n3MBAxfF019502 for ; Wed, 22 Apr 2009 07:10:59 -0400 Received: from zweiblum.home.kraxel.org (vpn-10-50.str.redhat.com [10.32.10.50]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id n3MBAqfg017206 for ; Wed, 22 Apr 2009 07:10:56 -0400 Message-ID: <49EEFB38.9060903@redhat.com> Date: Wed, 22 Apr 2009 13:10:48 +0200 From: Gerd Hoffmann MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------090505090309070808030202" Subject: [Qemu-devel] [PATCH] add hw/Makefile ... List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "qemu-devel@nongnu.org" This is a multi-part message in MIME format. --------------090505090309070808030202 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi, ... so you can type "make" in the hw/ subdir and it happens something useful ;) cheers, Gerd --------------090505090309070808030202 Content-Type: text/plain; name="0004-add-hw-Makefile.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0004-add-hw-Makefile.patch" >>From 7754e2fe0d2c955962e8a186e7f824b4b0139453 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Wed, 22 Apr 2009 12:39:24 +0200 Subject: [PATCH 04/10] 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..625525c --- /dev/null +++ b/hw/Makefile @@ -0,0 +1,2 @@ +all: + make -C .. $@ -- 1.6.2.2 --------------090505090309070808030202--