qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] trace: Use GENERATED_HEADERS dependencies


From: Stefan Hajnoczi
Subject: [Qemu-devel] [PATCH] trace: Use GENERATED_HEADERS dependencies
Date: Tue, 29 Jun 2010 10:51:42 +0100

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 <address@hidden>
---
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 --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)
 
 ######################################################################
 
-- 
1.7.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]