[llvm-commits] [llvm] r102752 - /llvm/trunk/Makefile.rules

Daniel Dunbar daniel at zuster.org
Fri Apr 30 13:04:53 PDT 2010


Author: ddunbar
Date: Fri Apr 30 15:04:53 2010
New Revision: 102752

URL: http://llvm.org/viewvc/llvm-project?rev=102752&view=rev
Log:
Add new NO_INSTALL_ARCHIVES make variable, to suppress install of .a files.

Modified:
    llvm/trunk/Makefile.rules

Modified: llvm/trunk/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile.rules?rev=102752&r1=102751&r2=102752&view=diff
==============================================================================
--- llvm/trunk/Makefile.rules (original)
+++ llvm/trunk/Makefile.rules Fri Apr 30 15:04:53 2010
@@ -1234,6 +1234,11 @@
 	$(Echo) Install circumvented with NO_INSTALL
 uninstall-local::
 	$(Echo) Uninstall circumvented with NO_INSTALL
+else ifdef NO_INSTALL_ARCHIVES
+install-local::
+	$(Echo) Install circumvented with NO_INSTALL
+uninstall-local::
+	$(Echo) Uninstall circumvented with NO_INSTALL
 else
 DestArchiveLib := $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).a
 





More information about the llvm-commits mailing list