Skip to content

Commit

Permalink
* common.mk (clean): exclude *.inc. [ruby-dev:41931]
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
nurse committed Aug 29, 2010
1 parent 1e5f5c8 commit b2eb38f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Sun Aug 29 09:35:10 2010 NARUSE, Yui <[email protected]>

* 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 <[email protected]>

* ext/pathname/pathname.c (path_chardev_p): Pathname#chardev?
Expand Down
7 changes: 4 additions & 3 deletions common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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
Expand Down Expand Up @@ -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 ""
Expand Down

0 comments on commit b2eb38f

Please sign in to comment.