]> git.proxmox.com Git - mirror_qemu.git/commitdiff
optionroms: Silence intermediate file removal
authorJan Kiszka <jan.kiszka@siemens.com>
Mon, 30 Jan 2012 10:27:33 +0000 (11:27 +0100)
committerAnthony Liguori <aliguori@us.ibm.com>
Wed, 1 Feb 2012 20:45:02 +0000 (14:45 -0600)
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>
pc-bios/optionrom/Makefile

index 51da288e32297b76eb03f71fc3532ce9c0a58f1d..2caf7e6b69298254159805264ea9436631d2bbec 100644 (file)
@@ -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)$@")