bf95728400
Move target-specific code out of /monitor.c to /target-*/monitor.c, this will avoid code cluttering and using random ifdeffery. The solution is quite simple, but solves the issue of the separation of target-specific code from monitor. Signed-off-by: Pavel Butsykin <pbutsykin@virtuozzo.com> Signed-off-by: Denis V. Lunev <den@openvz.org> CC: Paolo Bonzini <pbonzini@redhat.com> CC: Peter Maydell <peter.maydell@linaro.org> Message-Id: <1441899541-1856-3-git-send-email-den@openvz.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
8 lines
290 B
Makefile
8 lines
290 B
Makefile
obj-$(CONFIG_SOFTMMU) += machine.o monitor.o
|
|
obj-y += translate.o helper.o cpu.o
|
|
obj-y += fop_helper.o cc_helper.o win_helper.o mmu_helper.o ldst_helper.o
|
|
obj-$(TARGET_SPARC) += int32_helper.o
|
|
obj-$(TARGET_SPARC64) += int64_helper.o
|
|
obj-$(TARGET_SPARC64) += vis_helper.o
|
|
obj-y += gdbstub.o
|