From e0098b9d0117dc28ee87fd19b9bc8fedfde37223 Mon Sep 17 00:00:00 2001 From: panne Date: Fri, 17 Oct 2003 17:52:33 +0000 Subject: [PATCH] [project @ 2003-10-17 17:52:33 by panne] Add config.cache to DIST_CLEAN_FILES and remove autom4te.cache subdir for every clean* target --- Makefile | 3 +++ ghc/Makefile | 7 +++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1ec0796..7f47f3b 100644 --- a/Makefile +++ b/Makefile @@ -48,6 +48,9 @@ project-check : DIST_CLEAN_FILES += config.cache config.status +extraclean:: + $(RM) -rf autom4te.cache + # # If you've ended up using an in-place version of Happy, # make sure it gets built early on. diff --git a/ghc/Makefile b/ghc/Makefile index ee14beb..6005c1e 100644 --- a/ghc/Makefile +++ b/ghc/Makefile @@ -1,5 +1,5 @@ #----------------------------------------------------------------------------- -# $Id: Makefile,v 1.22 2003/03/31 12:23:41 simonmar Exp $ +# $Id: Makefile,v 1.23 2003/10/17 17:52:33 panne Exp $ # TOP=. @@ -37,7 +37,10 @@ endif SRC_DIST_FILES += configure -DIST_CLEAN_FILES += ghc.spec config.status +DIST_CLEAN_FILES += config.cache config.status ghc.spec + +extraclean:: + $(RM) -rf autom4te.cache ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32" # These files need to be in the InstallShield -- 1.7.10.4