diff options
author | Ian Lynagh <igloo@earth.li> | 2008-09-24 23:05:53 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-09-24 23:05:53 +0000 |
commit | ed1cc5d8a193151d6733fb146986ebf23597fda0 (patch) | |
tree | e4fbc9ff98ab5910fd16c2da8f7407949ca4ce44 /ghc | |
parent | e8173f39393bf2f458557092179d7dcf25aee703 (diff) | |
download | haskell-ed1cc5d8a193151d6733fb146986ebf23597fda0.tar.gz |
Fix maintainer-clean
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ghc/Makefile b/ghc/Makefile index 23a5384d58..f1666d1ac9 100644 --- a/ghc/Makefile +++ b/ghc/Makefile @@ -36,13 +36,13 @@ stage3 :: ifeq "$(CLEAN_ALL_STAGES)" "YES" -clean distclean:: clean.stage.1 clean.stage.2 clean.stage.3 +clean distclean maintainer-clean:: clean.stage.1 clean.stage.2 clean.stage.3 else -clean distclean:: clean.stage.$(stage) +clean distclean maintainer-clean:: clean.stage.$(stage) endif ifeq "$(CLEAN_ALL_STAGES)" "YES" -distclean:: +distclean maintainer-clean:: $(RM) -f ghc-bin.cabal endif |