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
This commit is contained in:
Vikram S. Adve 2002-08-29 18:40:51 +00:00
parent 690d99b31b
commit 764b46ea2d
2 changed files with 26 additions and 8 deletions

View File

@ -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

View File

@ -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