mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-30 03:00:29 -07:00
Also drop curses libs from libs_softmmu. Add CURSES_{CFLAGS,LIBS}
variables so we can use them for linking the curses module.
Also make target/unicore32/helper.o depend on curses which uses curses
directly for some reason ...
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-id: 20180301100547.18962-12-kraxel@redhat.com
8 lines
250 B
Text
8 lines
250 B
Text
obj-y += translate.o op_helper.o helper.o cpu.o
|
|
obj-y += ucf64_helper.o
|
|
|
|
obj-$(CONFIG_SOFTMMU) += softmmu.o
|
|
|
|
# Huh? Uses curses directly instead of using ui/console.h interfaces ...
|
|
helper.o-cflags := $(CURSES_CFLAGS)
|
|
helper.o-libs := $(CURSES_LIBS)
|