diff options
| author | Paolo Bonzini | 2012-12-21 09:45:20 +0100 |
|---|---|---|
| committer | Paolo Bonzini | 2013-01-12 18:42:51 +0100 |
| commit | ff667e2e9b86fdc36e3b143483526f4c4fe80049 (patch) | |
| tree | 28261edcc7426d92fc1435401a30a46487ab964f /trace | |
| parent | build: some simplifications for "trace/Makefile.objs" (diff) | |
| download | qemu-ff667e2e9b86fdc36e3b143483526f4c4fe80049.tar.gz qemu-ff667e2e9b86fdc36e3b143483526f4c4fe80049.tar.xz qemu-ff667e2e9b86fdc36e3b143483526f4c4fe80049.zip | |
build: fold trace-obj-y into libqemuutil.a
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'trace')
| -rw-r--r-- | trace/Makefile.objs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/trace/Makefile.objs b/trace/Makefile.objs index ed2e30b001..27fe26b5c2 100644 --- a/trace/Makefile.objs +++ b/trace/Makefile.objs @@ -51,8 +51,8 @@ endif ###################################################################### # Backend code -trace-obj-$(CONFIG_TRACE_DEFAULT) += default.o -trace-obj-$(CONFIG_TRACE_SIMPLE) += simple.o -trace-obj-$(CONFIG_TRACE_STDERR) += stderr.o -trace-obj-y += control.o -trace-obj-y += generated-tracers.o +util-obj-$(CONFIG_TRACE_DEFAULT) += default.o +util-obj-$(CONFIG_TRACE_SIMPLE) += simple.o +util-obj-$(CONFIG_TRACE_STDERR) += stderr.o +util-obj-y += control.o +util-obj-y += generated-tracers.o |
