qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] add hw/Makefile ...
@ 2009-04-22 11:10 Gerd Hoffmann
  2009-04-22 12:17 ` Christoph Egger
  2009-04-28 13:16 ` Paul Brook
  0 siblings, 2 replies; 6+ messages in thread
From: Gerd Hoffmann @ 2009-04-22 11:10 UTC (permalink / raw)
  To: qemu-devel@nongnu.org

[-- Attachment #1: Type: text/plain, Size: 106 bytes --]

   Hi,

... so you can type "make" in the hw/ subdir and it happens something 
useful ;)

cheers,
   Gerd

[-- Attachment #2: 0004-add-hw-Makefile.patch --]
[-- Type: text/plain, Size: 563 bytes --]

>From 7754e2fe0d2c955962e8a186e7f824b4b0139453 Mon Sep 17 00:00:00 2001
From: Gerd Hoffmann <kraxel@redhat.com>
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 <kraxel@redhat.com>
---
 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


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] [PATCH] add hw/Makefile ...
  2009-04-22 11:10 [Qemu-devel] [PATCH] add hw/Makefile Gerd Hoffmann
@ 2009-04-22 12:17 ` Christoph Egger
  2009-04-22 12:50   ` Gerd Hoffmann
  2009-04-28 13:16 ` Paul Brook
  1 sibling, 1 reply; 6+ messages in thread
From: Christoph Egger @ 2009-04-22 12:17 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

On Wednesday 22 April 2009 13:10:48 Gerd Hoffmann wrote:
>    Hi,
>
> ... so you can type "make" in the hw/ subdir and it happens something
> useful ;)
>
> cheers,
>    Gerd

This is wrong. Use $(MAKE) or you break platforms where you have to use
"gmake", otherwise.

Christoph

-- 
---to satisfy European Law for business letters:
Advanced Micro Devices GmbH
Karl-Hammerschmidt-Str. 34, 85609 Dornach b. Muenchen
Geschaeftsfuehrer: Jochen Polster, Thomas M. McCoy, Giuliano Meroni
Sitz: Dornach, Gemeinde Aschheim, Landkreis Muenchen
Registergericht Muenchen, HRB Nr. 43632

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] [PATCH] add hw/Makefile ...
  2009-04-22 12:17 ` Christoph Egger
@ 2009-04-22 12:50   ` Gerd Hoffmann
  2009-04-22 13:31     ` Christoph Egger
  0 siblings, 1 reply; 6+ messages in thread
From: Gerd Hoffmann @ 2009-04-22 12:50 UTC (permalink / raw)
  To: Christoph Egger; +Cc: qemu-devel

[-- Attachment #1: Type: text/plain, Size: 181 bytes --]

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

[-- Attachment #2: 0003-add-hw-Makefile.patch --]
[-- Type: text/plain, Size: 564 bytes --]

>From f18c599455383522b3901d0585befc2afa8cfe93 Mon Sep 17 00:00:00 2001
From: Gerd Hoffmann <kraxel@redhat.com>
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 <kraxel@redhat.com>
---
 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


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] [PATCH] add hw/Makefile ...
  2009-04-22 12:50   ` Gerd Hoffmann
@ 2009-04-22 13:31     ` Christoph Egger
  0 siblings, 0 replies; 6+ messages in thread
From: Christoph Egger @ 2009-04-22 13:31 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

On Wednesday 22 April 2009 14:50:09 Gerd Hoffmann wrote:
> 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

That's fine.

Christoph


-- 
---to satisfy European Law for business letters:
Advanced Micro Devices GmbH
Karl-Hammerschmidt-Str. 34, 85609 Dornach b. Muenchen
Geschaeftsfuehrer: Jochen Polster, Thomas M. McCoy, Giuliano Meroni
Sitz: Dornach, Gemeinde Aschheim, Landkreis Muenchen
Registergericht Muenchen, HRB Nr. 43632

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] [PATCH] add hw/Makefile ...
  2009-04-22 11:10 [Qemu-devel] [PATCH] add hw/Makefile Gerd Hoffmann
  2009-04-22 12:17 ` Christoph Egger
@ 2009-04-28 13:16 ` Paul Brook
  2009-04-28 17:02   ` Anthony Liguori
  1 sibling, 1 reply; 6+ messages in thread
From: Paul Brook @ 2009-04-28 13:16 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

On Wednesday 22 April 2009, Gerd Hoffmann wrote:
>    Hi,
>
> ... so you can type "make" in the hw/ subdir and it happens something
> useful ;)

I'm not convinced it should do anything useful.

Paul

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] [PATCH] add hw/Makefile ...
  2009-04-28 13:16 ` Paul Brook
@ 2009-04-28 17:02   ` Anthony Liguori
  0 siblings, 0 replies; 6+ messages in thread
From: Anthony Liguori @ 2009-04-28 17:02 UTC (permalink / raw)
  To: Paul Brook; +Cc: qemu-devel, Gerd Hoffmann

Paul Brook wrote:
> On Wednesday 22 April 2009, Gerd Hoffmann wrote:
>   
>>    Hi,
>>
>> ... so you can type "make" in the hw/ subdir and it happens something
>> useful ;)
>>     
>
> I'm not convinced it should do anything useful.
>   

Neither am I.  I'm pretty sure it would confuse me to do a top level 
build from a sub directory.

Regards,

Anthony Liguori
> Paul
>
>
>   

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-04-28 17:02 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-22 11:10 [Qemu-devel] [PATCH] add hw/Makefile Gerd Hoffmann
2009-04-22 12:17 ` Christoph Egger
2009-04-22 12:50   ` Gerd Hoffmann
2009-04-22 13:31     ` Christoph Egger
2009-04-28 13:16 ` Paul Brook
2009-04-28 17:02   ` Anthony Liguori

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).