dryclean: Show what actual files would be deleted

This commit is contained in:
Eelco Dolstra
2013-12-12 11:22:08 +01:00
parent 49a385096e
commit 3560f52cc4
+2 -2
View File
@@ -1,7 +1,7 @@
clean_files :=
clean:
rm -fv $(clean_files)
$(QUIET) rm -fv -- $(clean_files)
dryclean:
@echo $(clean_files)
@for i in $(clean_files); do if [ -e $$i ]; then echo $$i; fi; done