[前][次][番号順一覧][スレッド一覧]

ruby-changes:17130

From: naruse <ko1@a...>
Date: Sun, 29 Aug 2010 09:36:31 +0900 (JST)
Subject: [ruby-changes:17130] Ruby:r29130 (trunk): * common.mk (clean): exclude *.inc.

naruse	2010-08-29 09:36:24 +0900 (Sun, 29 Aug 2010)

  New Revision: 29130

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=29130

  Log:
    * common.mk (clean): exclude *.inc. [ruby-dev:41931]
    
    * common.mk (distclean): include *.inc.
    
    * common.mk (help): change description about clean and distclean.

  Modified files:
    trunk/ChangeLog
    trunk/common.mk

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 29129)
+++ ChangeLog	(revision 29130)
@@ -1,3 +1,11 @@
+Sun Aug 29 09:35:10 2010  NARUSE, Yui  <naruse@r...>
+
+	* 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@f...>
 
 	* ext/pathname/pathname.c (path_chardev_p): Pathname#chardev?
Index: common.mk
===================================================================
--- common.mk	(revision 29129)
+++ common.mk	(revision 29130)
@@ -374,7 +374,7 @@
 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 @@
 
 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 @@
 	@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 ""

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]