summaryrefslogtreecommitdiff
path: root/common.mk
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-29 12:54:40 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-29 12:54:40 +0000
commit1b0ba5931ded52e16b24ea9ca8e466cd0aaed0fc (patch)
treecf71d887f767d2204ee9bff1f53faee5e9ca92aa /common.mk
parent26910f44bda52a57bf972113545f15320f9c3b7b (diff)
* common.mk (clean, distclean, realclean): should include clean-enc
and others. [ruby-dev:32887] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14781 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'common.mk')
-rw-r--r--common.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/common.mk b/common.mk
index 71b9cc721e..439da73db7 100644
--- a/common.mk
+++ b/common.mk
@@ -300,7 +300,7 @@ install-prereq: $(CLEAR_INSTALLED_LIST)
clear-installed-list:
@exit > $(INSTALLED_LIST)
-clean: clean-ext clean-local
+clean: clean-ext clean-local clean-enc
clean-local::
@$(RM) $(OBJS) $(MINIOBJS) $(MAINOBJ) $(WINMAINOBJ) $(LIBRUBY_A) $(LIBRUBY_SO) $(LIBRUBY) $(LIBRUBY_ALIASES)
@$(RM) $(PROGRAM) $(WPROGRAM) miniruby$(EXEEXT) dmyext.$(OBJEXT) $(ARCHFILE) .*.time
@@ -310,7 +310,7 @@ clean-ext:
clean-enc:
@-$(MAKE) -f enc.mk $(MFLAGS) clean
-distclean: distclean-ext distclean-local
+distclean: distclean-ext distclean-local distclean-enc
distclean-local:: clean-local
@$(RM) $(MKFILES) config.h rbconfig.rb
@$(RM) config.cache config.log config.status
@@ -322,7 +322,7 @@ distclean-ext:
distclean-enc: clean-enc
@-$(MAKE) -f enc.mk $(MFLAGS) distclean
-realclean:: realclean-ext realclean-local
+realclean:: realclean-ext realclean-local realclean-enc
realclean-local:: distclean-local
@$(RM) parse.c lex.c
realclean-ext::