diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2005-01-16 02:21:29 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2005-01-16 02:21:29 +0000 |
commit | bdf6a39d1c7b699da1c15cd32211387040edb1f7 (patch) | |
tree | 0116d64ac116c4892e58b11202cf2fe59947ba37 /projects/Makefile | |
parent | 39865c052dd161134c7ae5610424c8eb3f6a1be3 (diff) | |
download | external_llvm-bdf6a39d1c7b699da1c15cd32211387040edb1f7.zip external_llvm-bdf6a39d1c7b699da1c15cd32211387040edb1f7.tar.gz external_llvm-bdf6a39d1c7b699da1c15cd32211387040edb1f7.tar.bz2 |
Rename BUILD_* to PROJ_*
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19592 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'projects/Makefile')
-rw-r--r-- | projects/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/projects/Makefile b/projects/Makefile index ddb9323..f2a604a 100644 --- a/projects/Makefile +++ b/projects/Makefile @@ -10,7 +10,7 @@ LEVEL=.. include $(LEVEL)/Makefile.config -DIRS:= $(filter-out llvm-test,$(patsubst $(BUILD_SRC_DIR)/%/Makefile,%,$(wildcard $(BUILD_SRC_DIR)/*/Makefile))) +DIRS:= $(filter-out llvm-test,$(patsubst $(PROJ_SRC_DIR)/%/Makefile,%,$(wildcard $(PROJ_SRC_DIR)/*/Makefile))) # Sparc cannot link shared libraries (libtool problem?) which Stacker uses ifeq ($(ARCH), Sparc) @@ -18,4 +18,4 @@ DIRS := $(filter-out Stacker, $(DIRS)) DIRS := $(filter-out sample, $(DIRS)) endif -include $(BUILD_SRC_ROOT)/Makefile.rules +include $(PROJ_SRC_ROOT)/Makefile.rules |