summaryrefslogtreecommitdiffstats
path: root/src/arch/i386/Makefile
diff options
context:
space:
mode:
authorMichael Brown2008-10-10 04:57:31 +0200
committerMichael Brown2008-10-10 04:57:31 +0200
commit3029eb0e848e6e7662fe3f273ae4fa60ca02c88b (patch)
treef31d50d7c2cb22b550bf801d47eef246ad2c64e1 /src/arch/i386/Makefile
parent[makefile] Split platform-dependent portions out of arch/i386/Makefile (diff)
downloadipxe-3029eb0e848e6e7662fe3f273ae4fa60ca02c88b.tar.gz
ipxe-3029eb0e848e6e7662fe3f273ae4fa60ca02c88b.tar.xz
ipxe-3029eb0e848e6e7662fe3f273ae4fa60ca02c88b.zip
[makefile] Reduce verbosity of various NON_AUTO_MEDIA rules
Diffstat (limited to 'src/arch/i386/Makefile')
-rw-r--r--src/arch/i386/Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/arch/i386/Makefile b/src/arch/i386/Makefile
index 97252613..1959fbfd 100644
--- a/src/arch/i386/Makefile
+++ b/src/arch/i386/Makefile
@@ -88,14 +88,16 @@ include arch/i386/Makefile.$(PLATFORM)
# rule to write disk images to /dev/fd0
NON_AUTO_MEDIA += fd0
%fd0 : %dsk
- dd if=$< bs=512 conv=sync of=/dev/fd0
- sync
+ $(QM)$(ECHO) " [DD] $@"
+ $(Q)dd if=$< bs=512 conv=sync of=/dev/fd0
+ $(Q)sync
# rule to create padded disk images
NON_AUTO_MEDIA += pdsk
%pdsk : %dsk
- cp $< $@
- $(PERL) ./util/dskpad.pl $@
+ $(QM)$(ECHO) " [DSKPAD] $@"
+ $(Q)cp $< $@
+ $(Q)$(PERL) ./util/dskpad.pl $@
# Add NON_AUTO_MEDIA to the media list, so that they show up in the
# output of "make"