diff mbox

trace: Use GENERATED_HEADERS dependencies

Message ID 1277805102-22823-1-git-send-email-stefanha@linux.vnet.ibm.com
State New
Headers show

Commit Message

Stefan Hajnoczi June 29, 2010, 9:51 a.m. UTC
Generated header files including trace.h and config-host.h are required
for building trace code.  Instead of explictly specifying these files,
use the GENERATED_HEADERS variable that is also used elsewhere.

Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
---
This patch applies against the tracing branch:

http://repo.or.cz/w/qemu/stefanha.git/shortlog/refs/heads/tracing

 Makefile |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/Makefile b/Makefile
index de9b175..8831174 100644
--- a/Makefile
+++ b/Makefile
@@ -138,9 +138,9 @@  trace.h: $(SRC_PATH)/trace-events
 trace.c: $(SRC_PATH)/trace-events
 	$(call quiet-command,sh $(SRC_PATH)/tracetool --$(TRACE_BACKEND) -c < $< > $@,"  GEN   $@")
 
-trace.o: trace.c trace.h
+trace.o: trace.c $(GENERATED_HEADERS)
 
-simpletrace.o: simpletrace.c trace.h
+simpletrace.o: simpletrace.c $(GENERATED_HEADERS)
 
 ######################################################################