From 844893c76c6a34ab7a27fcda5015d1801bf0864e Mon Sep 17 00:00:00 2001 From: cathery Date: Tue, 21 Jul 2020 12:44:29 +0300 Subject: [PATCH] Quieter makefile --- Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index ce1be9e..c85179c 100644 --- a/Makefile +++ b/Makefile @@ -117,12 +117,12 @@ all: $(BUILD) $(BUILD): @[ -d $@ ] || mkdir -p $@ @$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile - rm -rf out - mkdir -p out/atmosphere/contents/420000000000000E/flags - mkdir -p out/config/$(TARGET) - touch out/atmosphere/contents/420000000000000E/flags/boot2.flag - cp $(TARGET).nsp out/atmosphere/contents/420000000000000E/exefs.nsp - cp -r sd_card/. out/ + @rm -rf out + @mkdir -p out/atmosphere/contents/420000000000000E/flags + @mkdir -p out/config/$(TARGET) + @touch out/atmosphere/contents/420000000000000E/flags/boot2.flag + @cp $(TARGET).nsp out/atmosphere/contents/420000000000000E/exefs.nsp + @cp -r sd_card/. out/ @echo [DONE] $(TARGET) compiled successfully. All files have been placed in out/ #---------------------------------------------------------------------------------