From 3427b15accea102ff956c0363f08238aa0f5654e Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Wed, 9 Sep 2009 09:34:43 +0000 Subject: [PATCH] NO_CLEAN_GMP fixes --- ghc.mk | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/ghc.mk b/ghc.mk index a98c922..7f653d0 100644 --- a/ghc.mk +++ b/ghc.mk @@ -807,6 +807,10 @@ install_packages: libffi/package.conf.install rts/package.conf.install # ----------------------------------------------------------------------------- # Binary distributions +ifneq "$(CLEANING)" "YES" +# This rule seems to hold some files open on Windows which prevents +# cleaning, perhaps due to the $(wildcard). + $(eval $(call bindist,.,\ LICENSE \ configure config.sub config.guess install-sh \ @@ -839,6 +843,7 @@ $(eval $(call bindist,.,\ bindist.mk \ libraries/dph/LICENSE \ )) +endif # mk/project.mk gets an absolute path, so we manually include it in # the bindist with a relative path @@ -990,20 +995,25 @@ CLEAN_FILES += utils/ghc-pwd/ghc-pwd.exe CLEAN_FILES += utils/ghc-pwd/ghc-pwd.hi CLEAN_FILES += utils/ghc-pwd/ghc-pwd.o CLEAN_FILES += libraries/bootstrapping.conf -CLEAN_FILES += libraries/integer-gmp/gmp/gmp.h -CLEAN_FILES += libraries/integer-gmp/gmp/libgmp.a CLEAN_FILES += libraries/integer-gmp/cbits/GmpDerivedConstants.h CLEAN_FILES += libraries/integer-gmp/cbits/mkGmpDerivedConstants -clean : clean_files clean_libraries clean_gmp +clean : clean_files clean_libraries .PHONY: clean_files clean_files : "$(RM)" $(RM_OPTS) $(CLEAN_FILES) +ifneq "$(NO_CLEAN_GMP)" "YES" +CLEAN_FILES += libraries/integer-gmp/gmp/gmp.h +CLEAN_FILES += libraries/integer-gmp/gmp/libgmp.a + +clean : clean_gmp +.PHONY: clean_gmp clean_gmp: "$(RM)" $(RM_OPTS) -r libraries/integer-gmp/gmp/objs "$(RM)" $(RM_OPTS) -r libraries/integer-gmp/gmp/gmpbuild +endif .PHONY: clean_libraries clean_libraries: $(patsubst %,clean_libraries/%_dist-install,$(PACKAGES) $(PACKAGES_STAGE2)) -- 1.7.10.4