]> git.proxmox.com Git - qemu.git/commitdiff
build: remove trace-nested-y
authorPaolo Bonzini <pbonzini@redhat.com>
Tue, 22 May 2012 11:50:03 +0000 (13:50 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Thu, 7 Jun 2012 05:17:24 +0000 (07:17 +0200)
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Makefile.objs

index 70c5c79a6e0d0129ede6f13456a6333c106e5887..1daa92c96b65fda1a95a30d53f7c156ffe53fd43 100644 (file)
@@ -425,16 +425,11 @@ ifneq ($(TRACE_BACKEND),dtrace)
 trace-obj-y = trace.o
 endif
 
-trace-nested-$(CONFIG_TRACE_DEFAULT) += default.o
-
-trace-nested-$(CONFIG_TRACE_SIMPLE) += simple.o
+trace-obj-$(CONFIG_TRACE_DEFAULT) += trace/default.o
+trace-obj-$(CONFIG_TRACE_SIMPLE) += trace/simple.o
 trace-obj-$(CONFIG_TRACE_SIMPLE) += qemu-timer-common.o
-
-trace-nested-$(CONFIG_TRACE_STDERR) += stderr.o
-
-trace-nested-y += control.o
-
-trace-obj-y += $(addprefix trace/, $(trace-nested-y))
+trace-obj-$(CONFIG_TRACE_STDERR) += trace/stderr.o
+trace-obj-y += trace/control.o
 
 $(trace-obj-y): $(GENERATED_HEADERS)