[llvm-commits] [llvm] r64523 - /llvm/branches/release_25/Makefile.rules

Tanya Lattner tonic at nondot.org
Fri Feb 13 17:07:50 PST 2009


Author: tbrethou
Date: Fri Feb 13 19:07:49 2009
New Revision: 64523

URL: http://llvm.org/viewvc/llvm-project?rev=64523&view=rev
Log:
Merge 64412 from mainline.
Avoid order files for now, as they aren't supported in 3.79.

Modified:
    llvm/branches/release_25/Makefile.rules

Modified: llvm/branches/release_25/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_25/Makefile.rules?rev=64523&r1=64522&r2=64523&view=diff

==============================================================================
--- llvm/branches/release_25/Makefile.rules (original)
+++ llvm/branches/release_25/Makefile.rules Fri Feb 13 19:07:49 2009
@@ -560,7 +560,7 @@
 # in the file so they get built before dependencies
 #---------------------------------------------------------
 
-$(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir):
+$(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir)::
 	$(Verb) $(MKDIR) $@
 
 # To create other directories, as needed, and timestamp their creation
@@ -868,7 +868,7 @@
 
 install-local:: $(DestSharedLib)
 
-$(DestSharedLib): $(LibName.LA) | $(PROJ_libdir)
+$(DestSharedLib): $(LibName.LA) $(PROJ_libdir)
 	$(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
 	$(Verb) $(LTInstall) $(LibName.LA) $(DestSharedLib)
 	$(Verb) $(LIBTOOL) --finish $(PROJ_libdir)
@@ -935,7 +935,7 @@
 else
 install-local:: $(DestBytecodeLib)
 
-$(DestBytecodeLib): $(LibName.BCA) | $(BytecodeDestDir)
+$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
 	$(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
 	$(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
 
@@ -982,7 +982,7 @@
 
 install-local:: $(DestRelinkedLib)
 
-$(DestRelinkedLib): $(LibName.O) | $(PROJ_libdir)
+$(DestRelinkedLib): $(LibName.O) $(PROJ_libdir)
 	$(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
 	$(Verb) $(LTInstall) $(LibName.O) $(DestRelinkedLib)
 
@@ -1022,7 +1022,7 @@
 
 install-local:: $(DestArchiveLib)
 
-$(DestArchiveLib): $(LibName.A) | $(PROJ_libdir)
+$(DestArchiveLib): $(LibName.A) $(PROJ_libdir)
 	$(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
 	$(Verb) $(MKDIR) $(PROJ_libdir)
 	$(Verb) $(LTInstall) $(LibName.A) $(DestArchiveLib)
@@ -1084,7 +1084,7 @@
 
 install-local:: $(DestTool)
 
-$(DestTool): $(ToolBuildPath) | $(PROJ_bindir)
+$(DestTool): $(ToolBuildPath) $(PROJ_bindir)
 	$(Echo) Installing $(BuildMode) $(DestTool)
 	$(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
 





More information about the llvm-commits mailing list