From 3a0c562393e9f9daf7218fde175bde7e709056c4 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sun, 17 May 2020 06:37:10 -0500 Subject: Allow "make distclean" to fail gracefully when root_download exists. (Don't delete it, warn it's there, but don't _not_ run next target.) --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 7c7971d9..ede910cb 100644 --- a/Makefile +++ b/Makefile @@ -70,7 +70,8 @@ clean:: # If singlemake was in generated/ "make clean; make test_ls" wouldn't work. distclean: clean root_clean - @rm -f toybox* .config* .singlemake root_download + @rm -f toybox* .config* .singlemake + @-rm root_download @echo removed .config tests: -- cgit v1.2.3