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

ruby-changes:16019

From: yugui <ko1@a...>
Date: Sun, 23 May 2010 18:19:05 +0900 (JST)
Subject: [ruby-changes:16019] Ruby:r27968 (ruby_1_9_2): * common.mk (capi): uses a timestamp file to get rid of

yugui	2010-05-23 18:15:32 +0900 (Sun, 23 May 2010)

  New Revision: 27968

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

  Log:
    * common.mk (capi): uses a timestamp file to get rid of 
      generating twice.

  Modified files:
    branches/ruby_1_9_2/ChangeLog
    branches/ruby_1_9_2/common.mk

Index: ruby_1_9_2/ChangeLog
===================================================================
--- ruby_1_9_2/ChangeLog	(revision 27967)
+++ ruby_1_9_2/ChangeLog	(revision 27968)
@@ -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.
+
 Sun May 23 17:48:39 2010  Nobuyoshi Nakada  <nobu@r...>
 
 	* ext/openssl/lib/openssl/x509-internal.rb, lib/forwardable.rb,
Index: ruby_1_9_2/common.mk
===================================================================
--- ruby_1_9_2/common.mk	(revision 27967)
+++ ruby_1_9_2/common.mk	(revision 27968)
@@ -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)
+	$(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/

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