From: Ian Lynagh Date: Sat, 8 May 2010 12:24:38 +0000 (+0000) Subject: Add a way to show what cleaning would be done, without actually doing it X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=0a6f3373bae8c59a61ca8a2f2852e5828fd044cd;hp=630cff0df4289e44404428ec679777cd422273bb Add a way to show what cleaning would be done, without actually doing it --- diff --git a/mk/tree.mk b/mk/tree.mk index eaeb9bc..639b93b 100644 --- a/mk/tree.mk +++ b/mk/tree.mk @@ -50,7 +50,13 @@ INPLACE_PERL = $(INPLACE)/perl # These are here, rather than in config.mk, as they need to exist in an # unconfigured tree so that the various clean targets can be used # without configuring: +ifeq "$(ONLY_SHOW_CLEANS)" "YES" +RM = echo +RM_OPTS = CLEAN_FILES +RM_OPTS_REC = CLEAN_REC +else RM = rm RM_OPTS = -f RM_OPTS_REC = -rf +endif