ruby-changes:17178
From: yugui <ko1@a...>
Date: Sat, 4 Sep 2010 01:04:55 +0900 (JST)
Subject: [ruby-changes:17178] Ruby:r29179 (trunk): Merges r27968 from ruby_1_9_2 into trunk.
yugui 2010-09-04 00:57:39 +0900 (Sat, 04 Sep 2010) New Revision: 29179 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=29179 Log: Merges r27968 from ruby_1_9_2 into trunk. -- * common.mk (capi): uses a timestamp file to get rid of generating twice. Modified files: trunk/ChangeLog trunk/common.mk Index: ChangeLog =================================================================== --- ChangeLog (revision 29178) +++ ChangeLog (revision 29179) @@ -1,3 +1,8 @@ +Sun May 23 17:29:41 2010 Yuki Sonoda (Yugui) <yugui@y...> + + * common.mk (capi): uses a timestamp file to get rid of + generating twice. + Fri Jun 18 01:33:21 2010 Yuki Sonoda (Yugui) <yugui@y...> * enc/Makefile.in (realclean): has been missing. necessary Index: common.mk =================================================================== --- common.mk (revision 29178) +++ common.mk (revision 29179) @@ -148,9 +148,11 @@ GORUBY = go$(RUBY_INSTALL_NAME) golf: $(LIBRUBY) $(GOLFOBJS) PHONY $(MAKE) $(MFLAGS) MAINOBJ="$(GOLFOBJS)" PROGRAM=$(GORUBY)$(EXEEXT) program -capi: Doxyfile PHONY $(PREP) +capi: doc/capi/.timestamp PHONY +doc/capi/.timestamp: Doxyfile $(PREP) @$(MAKEDIRS) doc/capi @$(DOXYGEN) -b + $(MINIRUBY) -e 'File.open("doc/capi/.timestamp", "w"){|f| f.puts(Time.now)}' Doxyfile: $(srcdir)/template/Doxyfile.tmpl $(PREP) $(srcdir)/tool/generic_erb.rb $(RBCONFIG) $(MINIRUBY) $(srcdir)/tool/generic_erb.rb -o $@ $(srcdir)/template/Doxyfile.tmpl \ -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/