[llvm-branch-commits] [cfe-branch] r110053 - /cfe/branches/Apple/lemur-IB/Makefile

Daniel Dunbar daniel at zuster.org
Mon Aug 2 11:30:20 PDT 2010


Author: ddunbar
Date: Mon Aug  2 13:30:19 2010
New Revision: 110053

URL: http://llvm.org/viewvc/llvm-project?rev=110053&view=rev
Log:
Add [re]tag-objc_translate utility targets.

Modified:
    cfe/branches/Apple/lemur-IB/Makefile

Modified: cfe/branches/Apple/lemur-IB/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/branches/Apple/lemur-IB/Makefile?rev=110053&r1=110052&r2=110053&view=diff
==============================================================================
--- cfe/branches/Apple/lemur-IB/Makefile (original)
+++ cfe/branches/Apple/lemur-IB/Makefile Mon Aug  2 13:30:19 2010
@@ -25,6 +25,7 @@
 
 SVN_BASE = $(shell svn info | sed -n "s/^URL: //; s,/llvm-project/.*$$,/llvm-project,p")
 SVN_CLANG = $(shell svn info | sed -n "s/^URL: //p")
+SVN_TAGS = $(SVN_BASE)/cfe/tags/Apple
 
 # Instead of jiggling the project files to only install the bits we want, we do
 # a real install into the OBJROOT, and then copy the exact bits we want to the
@@ -85,10 +86,17 @@
 
 update-sources:
 	svn rm -m 'Update.' $(SVN_CLANG)/src
-	svn cp -m 'Update.' $(SVN_BASE)/llvm/trunk $(SVN_CLANG)/src
-	svn cp -m 'Update.' $(SVN_BASE)/cfe/trunk $(SVN_CLANG)/src/tools/clang
+	svn cp -m 'Update.' $(SVN_BASE)/llvm/trunk@$(REVISION) $(SVN_CLANG)/src
+	svn cp -m 'Update.' $(SVN_BASE)/cfe/trunk@$(REVISION) $(SVN_CLANG)/src/tools/clang
 	svn up
 
+tag-objc_translate:
+	svn cp -m 'Tag.' $(SVN_CLANG) $(SVN_TAGS)/objc_translate-$(VERSION)
+
+retag-objc_translate:
+	svn rm -m 'Retag.' $(SVN_TAGS)/objc_translate-$(VERSION) && \
+	svn cp -m 'Retag.' $(SVN_CLANG) $(SVN_TAGS)/objc_translate-$(VERSION); \
+
 ###
 # Debugging
 





More information about the llvm-branch-commits mailing list