summaryrefslogtreecommitdiff
path: root/Makefile.objs
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2012-05-22 13:50:03 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2012-06-07 07:17:24 +0200
commit046e7c5f934a7a5680a6822eae4dfa80899a1d40 (patch)
tree833f579dd3c8a36a89912d7946de2e4a241897e3 /Makefile.objs
parent349417004a0f7cf5518a998dca755cd06f6c212b (diff)
downloadqemu-046e7c5f934a7a5680a6822eae4dfa80899a1d40.tar.gz
build: remove trace-nested-y
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'Makefile.objs')
-rw-r--r--Makefile.objs13
1 files changed, 4 insertions, 9 deletions
diff --git a/Makefile.objs b/Makefile.objs
index 70c5c79a6e..1daa92c96b 100644
--- a/Makefile.objs
+++ b/Makefile.objs
@@ -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)