Skip to content
Snippets Groups Projects
Commit 09001ee7 authored by Lluís Vilanova's avatar Lluís Vilanova Committed by Stefan Hajnoczi
Browse files

trace: [make] replace 'ifeq' with values in CONFIG_TRACE_*


Signed-off-by: default avatarLluís Vilanova <vilanova@ac.upc.edu>
parent 6d8a764e
No related branches found
No related tags found
No related merge requests found
......@@ -374,16 +374,14 @@ endif
simpletrace.o: simpletrace.c $(GENERATED_HEADERS)
ifeq ($(TRACE_BACKEND),dtrace)
trace-obj-y = trace-dtrace.o
else
trace-obj-$(CONFIG_TRACE_DTRACE) += trace-dtrace.o
ifneq ($(TRACE_BACKEND),dtrace)
trace-obj-y = trace.o
ifeq ($(TRACE_BACKEND),simple)
trace-obj-y += simpletrace.o
trace-obj-y += qemu-timer-common.o
endif
endif
trace-obj-$(CONFIG_TRACE_SIMPLE) += simpletrace.o
trace-obj-$(CONFIG_TRACE_SIMPLE) += qemu-timer-common.o
######################################################################
# smartcard
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment