diff options
| author | Jonathan Roelofs <jonathan@codesourcery.com> | 2015-11-09 16:10:00 +0000 |
|---|---|---|
| committer | Jonathan Roelofs <jonathan@codesourcery.com> | 2015-11-09 16:10:00 +0000 |
| commit | cc87e3bdc2ec2e12c2f278f2ae6e049ea875f8be (patch) | |
| tree | 7354fe4071539e8f6f4eeb7325ea904c06be145d | |
| parent | 960ea2f6779e92f1b8577456a187a7ab9864ce63 (diff) | |
| download | bcm5719-llvm-cc87e3bdc2ec2e12c2f278f2ae6e049ea875f8be.tar.gz bcm5719-llvm-cc87e3bdc2ec2e12c2f278f2ae6e049ea875f8be.zip | |
Create Makefile variables for 'share' and 'libexec'
in preparation for a Clang commit.
http://reviews.llvm.org/D14405
llvm-svn: 252473
| -rw-r--r-- | llvm/Makefile.rules | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/Makefile.rules b/llvm/Makefile.rules index 42d6a96cf52..a67aef7c97a 100644 --- a/llvm/Makefile.rules +++ b/llvm/Makefile.rules @@ -486,6 +486,8 @@ endif ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode) ObjDir := $(ObjRootDir) LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib +LibexecDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/libexec +ShareDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/share ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib @@ -857,6 +859,7 @@ $(DESTDIR)$(PROJ_bindir) $(DESTDIR)$(PROJ_libdir) $(DESTDIR)$(PROJ_includedir) $ .PRECIOUS: $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir +.PRECIOUS: $(LibexecDir)/.dir $(ShareDir)/.dir #--------------------------------------------------------- # Collect the object directories (as there may be more @@ -2144,6 +2147,8 @@ printvars:: $(Echo) "SrcMakefiles : " '$(SrcMakefiles)' $(Echo) "ObjDir : " '$(ObjDir)' $(Echo) "LibDir : " '$(LibDir)' + $(Echo) "LibexecDir : " '$(LibexecDir)' + $(Echo) "ShareDir : " '$(ShareDir)' $(Echo) "ToolDir : " '$(ToolDir)' $(Echo) "ExmplDir : " '$(ExmplDir)' $(Echo) "Sources : " '$(Sources)' |

