2373f7d581
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
9 lines
250 B
Makefile
9 lines
250 B
Makefile
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)
|