* common.mk (clean): exclude *.inc. [ruby-dev:41931]

* common.mk (distclean): include *.inc.

* common.mk (help): change description about clean and distclean.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29130 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2010-08-29 00:36:24 +00:00
parent 1e5f5c8b50
commit b2eb38fac5
2 changed files with 12 additions and 3 deletions

View File

@ -1,3 +1,11 @@
Sun Aug 29 09:35:10 2010 NARUSE, Yui <naruse@ruby-lang.org>
* common.mk (clean): exclude *.inc. [ruby-dev:41931]
* common.mk (distclean): include *.inc.
* common.mk (help): change description about clean and distclean.
Sat Aug 28 08:11:05 2010 Tanaka Akira <akr@fsij.org>
* ext/pathname/pathname.c (path_chardev_p): Pathname#chardev?

View File

@ -374,7 +374,7 @@ clean: clean-ext clean-local clean-enc clean-golf clean-rdoc clean-extout
clean-local:: PHONY
@$(RM) $(OBJS) $(MINIOBJS) $(MAINOBJ) $(LIBRUBY_A) $(LIBRUBY_SO) $(LIBRUBY) $(LIBRUBY_ALIASES)
@$(RM) $(PROGRAM) $(WPROGRAM) miniruby$(EXEEXT) dmyext.$(OBJEXT) $(ARCHFILE) .*.time
@$(RM) *.inc y.tab.c y.output encdb.h transdb.h prelude.c config.log rbconfig.rb
@$(RM) y.tab.c y.output encdb.h transdb.h prelude.c config.log rbconfig.rb
clean-ext:: PHONY
clean-golf: PHONY
@$(RM) $(GORUBY)$(EXEEXT) $(GOLFOBJS)
@ -383,7 +383,7 @@ clean-extout: PHONY
distclean: distclean-ext distclean-local distclean-enc distclean-golf distclean-extout
distclean-local:: clean-local
@$(RM) $(MKFILES) yasmdata.rb
@$(RM) $(MKFILES) yasmdata.rb *.inc
@$(RM) config.cache config.status config.status.lineno $(PRELUDES)
@$(RM) *~ *.bak *.stackdump core *.core gmon.out $(PREP)
distclean-ext:: PHONY
@ -851,7 +851,8 @@ help: PHONY
@echo " benchmark benchmark this ruby and COMPARE_RUBY"
@echo " install: install all ruby distributions"
@echo " install-nodoc: install without rdoc"
@echo " clean: clean built objects"
@echo " clean: clean for tarball"
@echo " distclean: clean for repo"
@echo " change: make change log template"
@echo " golf: for golfers"
@echo ""