From a5977aa2e8f2bbbe73d317d4211105f44f7c873e Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Thu, 22 Aug 2019 09:29:45 -0500 Subject: Quiet "make clean" so it doesn't fill a whole screen with output. --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 397e4777..354c9bf9 100644 --- a/Makefile +++ b/Makefile @@ -61,11 +61,13 @@ change: scripts/change.sh clean:: - rm -rf toybox generated change .singleconfig* + @echo cleaning + @rm -rf toybox generated change .singleconfig* # If singlemake was in generated/ "make clean; make test_ls" wouldn't work. distclean: clean - rm -f toybox_old .config* .singlemake + @echo removing .config + @rm -f toybox_old .config* .singlemake tests: scripts/test.sh -- cgit v1.2.3