From 986ff1e44ef800f56a5f20afb18c1ffdaf140a23 Mon Sep 17 00:00:00 2001 From: dzwdz Date: Sat, 24 Jul 2021 21:28:20 +0200 Subject: make the Makefile show almost nothing except warnings/errors --- Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index b6eaf0a..6fcd2c5 100644 --- a/Makefile +++ b/Makefile @@ -13,17 +13,16 @@ endef out/boot.iso: out/fs/boot/kernel.bin out/fs/boot/grub/grub.cfg out/fs/boot/init - @echo - grub-mkrescue -o $@ out/fs/ + @grub-mkrescue -o $@ out/fs/ > /dev/null 2>&1 out/fs/boot/kernel.bin: src/kernel/linker.ld $(call from_sources, src/kernel/) @mkdir -p $(@D) - $(CC) $(LFLAGS) -T $^ -o $@ + @$(CC) $(LFLAGS) -T $^ -o $@ grub-file --is-x86-multiboot $@ out/fs/boot/init: src/init/linker.ld $(call from_sources, src/init/) @mkdir -p $(@D) - $(CC) $(LFLAGS) -T $^ -o $@ + @$(CC) $(LFLAGS) -T $^ -o $@ out/fs/boot/grub/grub.cfg: grub.cfg @mkdir -p $(@D) -- cgit v1.2.3