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 | 0e48bf8a19e7e01f7239f8de174e42c62a5c8b42 (patch) | |
tree | e64b394f54f57cc798a959b435c433b3c61f7929 /llvm/projects | |
parent | 05a2e79221ea2355a4255337deb5a358d67d6e2a (diff) | |
download | bcm5719-llvm-0e48bf8a19e7e01f7239f8de174e42c62a5c8b42.tar.gz bcm5719-llvm-0e48bf8a19e7e01f7239f8de174e42c62a5c8b42.zip |
Rename BUILD_* to PROJ_*
llvm-svn: 19592
Diffstat (limited to 'llvm/projects')
-rw-r--r-- | llvm/projects/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/projects/Makefile b/llvm/projects/Makefile index ddb9323ba5f..f2a604a55fb 100644 --- a/llvm/projects/Makefile +++ b/llvm/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 |