diff options
author | dzwdz | 2021-07-24 21:28:20 +0200 |
---|---|---|
committer | dzwdz | 2021-07-24 21:28:20 +0200 |
commit | 986ff1e44ef800f56a5f20afb18c1ffdaf140a23 (patch) | |
tree | d454607d2d4e5171b75c20d1ea4f2acb29e6895f | |
parent | e8f39e9b3b16cc539b35838876a2d810614acd57 (diff) |
make the Makefile show almost nothing except warnings/errors
-rw-r--r-- | Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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) |