mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
optionroms: Silence intermediate file removal
The build process of optionroms spits out an "rm ..." line. Moreover, it removes all .o files that can be handy for debugging purposes. So disable automatic intermediate removal. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
02df4d6fb4
commit
6fbcef296a
1 changed files with 3 additions and 0 deletions
|
@ -16,6 +16,9 @@ QEMU_CFLAGS = $(CFLAGS)
|
|||
|
||||
build-all: multiboot.bin linuxboot.bin
|
||||
|
||||
# suppress auto-removal of intermediate files
|
||||
.SECONDARY:
|
||||
|
||||
%.img: %.o
|
||||
$(call quiet-command,$(LD) -Ttext 0 -e _start -s -o $@ $<," Building $(TARGET_DIR)$@")
|
||||
|
||||
|
|
Loading…
Reference in a new issue