From patchwork Fri Oct 1 18:01:59 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Quieter build Date: Fri, 01 Oct 2010 18:01:59 -0000 From: Myles Watson X-Patchwork-Id: 2021 Message-Id: To: coreboot I'd like to redirect the output of iasl to a file. Patch attached. Here's a little justification: http://qa.coreboot.org/log_buildbrd.php?revision=5900&device=serengeti_cheetah&vendor=amd&num=2 Signed-off-by: Myles Watson Thanks, Myles Acked-by: Uwe Hermann Index: Makefile =================================================================== --- Makefile (revision 5901) +++ Makefile (working copy) @@ -229,7 +229,7 @@ $(obj)/$(1).ramstage.o: src/$(1).asl @printf " IASL $$(subst $(top)/,,$$(@))\n" $(CPP) -D__ACPI__ -P -include $(abspath $(obj)/config.h) -I$(src) -I$(src)/mainboard/$(MAINBOARDDIR) $$< -o $$(basename $$@).asl - iasl -p $$(obj)/$(1) -tc $$(basename $$@).asl + iasl -p $$(obj)/$(1) -tc $$(basename $$@).asl > $$(basename $$@).asl.out mv $$(obj)/$(1).hex $$(basename $$@).c $(CC) $$(CFLAGS) $$(if $$(subst dsdt,,$$(basename $$(notdir $(1)))), -DAmlCode=AmlCode_$$(basename $$(notdir $(1)))) -c -o $$@ $$(basename $$@).c # keep %.o: %.c rule from catching the temporary .c file after a make clean