All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] PATCH: fix Makefile issue with make 3.79
@ 2007-11-26 13:24 Tristan Gingold
  2007-11-28 10:24 ` Mike Frysinger
  0 siblings, 1 reply; 3+ messages in thread
From: Tristan Gingold @ 2007-11-26 13:24 UTC (permalink / raw)
  To: qemu-devel

$^ is all dependencies (ie the .c and .h files in dyngen case).
Because there is only one .c file to compile, this patch will work in  
all cases.

Tristan.


diff -c -r1.136 Makefile
*** Makefile	24 Nov 2007 23:35:07 -0000	1.136
--- Makefile	26 Nov 2007 13:17:41 -0000
***************
*** 132,138 ****

   # dyngen host tool
   dyngen$(EXESUF): dyngen.c
! 	$(HOST_CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -o $@ $^

   clean:
   # avoid old build problems by removing potentially incorrect old  
files
--- 132,138 ----

   # dyngen host tool
   dyngen$(EXESUF): dyngen.c
! 	$(HOST_CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -o $@ $<

   clean:
   # avoid old build problems by removing potentially incorrect old  
files

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

end of thread, other threads:[~2007-11-28 10:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-26 13:24 [Qemu-devel] PATCH: fix Makefile issue with make 3.79 Tristan Gingold
2007-11-28 10:24 ` Mike Frysinger
2007-11-28 10:43   ` Tristan Gingold

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.