build: fold trace-obj-y into libqemuutil.a

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Paolo Bonzini 2012-12-21 09:45:20 +01:00
parent 0e848f482b
commit ff667e2e9b
5 changed files with 20 additions and 26 deletions

View file

@ -1,7 +1,7 @@
#######################################################################
# Common libraries for tools and emulators
stub-obj-y = stubs/
util-obj-y = util/ qobject/ qapi/
util-obj-y = util/ qobject/ qapi/ trace/
#######################################################################
# block-obj-y is code used by both qemu system emulation and qemu-img
@ -77,11 +77,6 @@ ifeq ($(CONFIG_SECCOMP),y)
common-obj-y += qemu-seccomp.o
endif
######################################################################
# trace
trace-obj-y += trace/
######################################################################
# smartcard
@ -107,7 +102,6 @@ universal-obj-y += tcg-runtime.o
universal-obj-y += hw/
universal-obj-y += qom/
universal-obj-y += disas/
universal-obj-y += $(trace-obj-y)
######################################################################
# guest agent
@ -129,6 +123,5 @@ nested-vars += \
block-obj-y \
common-obj-y \
universal-obj-y \
extra-obj-y \
trace-obj-y
extra-obj-y
dummy := $(call unnest-vars)