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

ruby-changes:35661

From: nobu <ko1@a...>
Date: Tue, 30 Sep 2014 10:17:17 +0900 (JST)
Subject: [ruby-changes:35661] nobu:r47743 (trunk): common.mk: mark PHONY targets

nobu	2014-09-30 10:17:05 +0900 (Tue, 30 Sep 2014)

  New Revision: 47743

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

  Log:
    common.mk: mark PHONY targets

  Modified files:
    trunk/common.mk
Index: common.mk
===================================================================
--- common.mk	(revision 47742)
+++ common.mk	(revision 47743)
@@ -1075,7 +1075,7 @@ dist: https://github.com/ruby/ruby/blob/trunk/common.mk#L1075
 up::
 	-$(Q)$(MAKE) $(MFLAGS) REVISION_FORCE=PHONY "$(REVISION_H)"
 
-update-config_files:
+update-config_files: PHONY
 	$(Q) $(BASERUBY) -C "$(srcdir)/tool" \
 	    ../tool/downloader.rb -e gnu \
 	    config.guess config.sub
@@ -1089,20 +1089,20 @@ update-gems: PHONY https://github.com/ruby/ruby/blob/trunk/common.mk#L1089
 	    -e 'Downloader::RubyGems.download(gem)' \
 	    bundled_gems
 
-update-unicode:
+update-unicode: PHONY
 	$(ECHO) Downloading Unicode data files...
 	$(Q) $(BASERUBY) -C "$(srcdir)/enc/unicode/data" \
 	    ../../../tool/downloader.rb unicode \
 	    UnicodeData.txt CompositionExclusions.txt NormalizationTest.txt
 
 info: info-program info-libruby_a info-libruby_so info-arch
-info-program:
+info-program: PHONY
 	@echo PROGRAM=$(PROGRAM)
-info-libruby_a:
+info-libruby_a: PHONY
 	@echo LIBRUBY_A=$(LIBRUBY_A)
-info-libruby_so:
+info-libruby_so: PHONY
 	@echo LIBRUBY_SO=$(LIBRUBY_SO)
-info-arch:
+info-arch: PHONY
 	@echo arch=$(arch)
 
 change: PHONY
@@ -1113,7 +1113,7 @@ love: sudo-precheck up all test install https://github.com/ruby/ruby/blob/trunk/common.mk#L1113
 
 yes-test-all: sudo-precheck
 
-sudo-precheck:
+sudo-precheck: PHONY
 	@$(SUDO) echo > $(NULL)
 
 help: PHONY

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

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