diff options
author | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-08-29 18:40:51 +0000 |
---|---|---|
committer | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-08-29 18:40:51 +0000 |
commit | 764b46ea2de93cbfa3e1064e1750c88c2441b317 (patch) | |
tree | 8f0275d00242a82e37adbd2f286b6302dcf4c90f /Makefile.common | |
parent | 690d99b31b0ecb2a08f711a4b5eded62cd6f7ce4 (diff) |
Factor out /shared/... path to simplify changing it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3521 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.common')
-rw-r--r-- | Makefile.common | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/Makefile.common b/Makefile.common index 5770ada827..d564cad3eb 100644 --- a/Makefile.common +++ b/Makefile.common @@ -41,9 +41,19 @@ # #ENABLE_OPTIMIZED = 1 -# If you do not want to build into /shared, uncomment this +# Current working directory, used below +CUR_DIRECTORY := $(shell pwd) + +# Path to directory where object files should be stored during a build. +# Set this to "." if you do not want to use a separate place for object files. +# +BUILD_DIR = /shared/$(LOGIN_NAME)$(patsubst $(HOME)%,%,$(CUR_DIRECTORY)) + +# Flag whether or not to use a separate location for build files # -#BUILD_ROOT = . +ifeq ($(BUILD_DIR),".") + BUILD_ROOT = $(BUILD_DIR) +endif ifdef SHARED_LIBRARY # if SHARED_LIBRARY is specified, the default is to build the dynamic lib @@ -66,8 +76,7 @@ BUILD_ROOT_TOP := $(LEVEL) else LOGIN_NAME := $(shell whoami) -CUR_DIRECTORY := $(shell pwd) -BUILD_ROOT := /shared/$(LOGIN_NAME)$(patsubst $(HOME)%,%,$(CUR_DIRECTORY)) +BUILD_ROOT := $(BUILD_DIR) # Calculate the BUILD_ROOT_TOP variable, which is the top of the llvm/ tree. # Note that although this is just equal to $(BUILD_ROOT)/$(LEVEL), we cannot use |