summaryrefslogtreecommitdiff
path: root/compiler/Makefile
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2008-09-24 23:05:53 +0000
committerIan Lynagh <igloo@earth.li>2008-09-24 23:05:53 +0000
commited1cc5d8a193151d6733fb146986ebf23597fda0 (patch)
treee4fbc9ff98ab5910fd16c2da8f7407949ca4ce44 /compiler/Makefile
parente8173f39393bf2f458557092179d7dcf25aee703 (diff)
downloadhaskell-ed1cc5d8a193151d6733fb146986ebf23597fda0.tar.gz
Fix maintainer-clean
Diffstat (limited to 'compiler/Makefile')
-rw-r--r--compiler/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/Makefile b/compiler/Makefile
index d64732aeb0..03f09405b2 100644
--- a/compiler/Makefile
+++ b/compiler/Makefile
@@ -56,7 +56,7 @@ stage3 ::
$(MAKE) stage=3
ifeq "$(CLEAN_ALL_STAGES)" "YES"
-clean distclean::
+clean distclean maintainer-clean::
$(RM) -f prelude/primops.txt
$(RM) -f $(PRIMOP_BITS)
$(RM) -f $(CONFIG_HS)
@@ -66,13 +66,13 @@ clean distclean::
endif
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.cabal
endif