diff options
author | Juan Quintela <quintela@redhat.com> | 2009-07-21 14:11:19 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-07-27 14:10:55 -0500 |
commit | 791e08c753a9f9be3c3880b4ea83b6dfa4b6ccad (patch) | |
tree | 674f7b7b81c3c3460ba77cb07281152dd9e47b69 /pc-bios | |
parent | 70071e1707b035b9b750f4494ae53c6ab696c4fc (diff) | |
download | qemu-791e08c753a9f9be3c3880b4ea83b6dfa4b6ccad.tar.gz qemu-791e08c753a9f9be3c3880b4ea83b6dfa4b6ccad.tar.bz2 qemu-791e08c753a9f9be3c3880b4ea83b6dfa4b6ccad.zip |
Use quiet-command for building optionrom
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'pc-bios')
-rw-r--r-- | pc-bios/optionrom/Makefile | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/pc-bios/optionrom/Makefile b/pc-bios/optionrom/Makefile index 88fbc4c9b3..2a0a7e7183 100644 --- a/pc-bios/optionrom/Makefile +++ b/pc-bios/optionrom/Makefile @@ -1,6 +1,7 @@ all: build-all include ../../config-host.mak +include ../../rules.mak VPATH=$(SRC_PATH)/pc-bios/optionrom @@ -22,25 +23,22 @@ try-run = $(shell set -e; \ cc-option-yn = $(call try-run,\ $(CC) $(KBUILD_CFLAGS) $(1) -S -xc /dev/null -o "$$TMP",y,n) -CFLAGS = -Wall -Wstrict-prototypes -Werror -fomit-frame-pointer -fno-builtin -CFLAGS += -I$(SRC_PATH) +CPPFLAGS = -Wall -Wstrict-prototypes -Werror -fomit-frame-pointer -fno-builtin +CPPFLAGS += -I$(SRC_PATH) ifeq ($(call cc-option-yn,-fno-stack-protector),y) -CFLAGS += -fno-stack-protector +CPPFLAGS += -fno-stack-protector endif build-all: multiboot.bin -%.o: %.S - $(CC) $(CFLAGS) -o $@ -c $< - %.img: %.o - $(LD) -Ttext 0 -e _start -s -o $@ $< + $(call quiet-command,$(LD) -Ttext 0 -e _start -s -o $@ $<," Building $(TARGET_DIR)$@") %.raw: %.img - $(OBJCOPY) -O binary -j .text $< $@ + $(call quiet-command,$(OBJCOPY) -O binary -j .text $< $@," Building $(TARGET_DIR)$@") %.bin: %.raw - $(SRC_PATH)/pc-bios/optionrom/signrom.sh $< $@ + $(call quiet-command,$(SRC_PATH)/pc-bios/optionrom/signrom.sh $< $@," Signing $(TARGET_DIR)$@") clean: $(RM) *.o *.img *.bin *~ |