From: Jan Kiszka Date: Mon, 30 Jan 2012 10:27:33 +0000 (+0100) Subject: optionroms: Silence intermediate file removal X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=6fbcef296a7e34b236d836cf7b42c38e78de6fb6;p=qemu-xen-4.5-testing.git 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 Signed-off-by: Anthony Liguori --- diff --git a/pc-bios/optionrom/Makefile b/pc-bios/optionrom/Makefile index 51da288e3..2caf7e6b6 100644 --- a/pc-bios/optionrom/Makefile +++ b/pc-bios/optionrom/Makefile @@ -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)$@")