diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2005-02-14 16:04:28 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2005-02-14 16:04:28 +0000 |
commit | 9c7fbaef9b92d24fd5cfa8c7b1183a7ba111aab3 (patch) | |
tree | ea84a0a5629aa6760ae07fa7d1fbf8cfe720e87a /llvm/projects/Stacker | |
parent | 8c47826c9f868220c0fe8aadc9d4101d1bc6c9a7 (diff) | |
download | bcm5719-llvm-9c7fbaef9b92d24fd5cfa8c7b1183a7ba111aab3.tar.gz bcm5719-llvm-9c7fbaef9b92d24fd5cfa8c7b1183a7ba111aab3.zip |
Update makefile to use PROJ_* makefile variables intead of BUILD_* as
required by changes to the Makefile.rules. Patch contributed by Vladimir
Merzliakov.
llvm-svn: 20175
Diffstat (limited to 'llvm/projects/Stacker')
-rw-r--r-- | llvm/projects/Stacker/test/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/projects/Stacker/test/Makefile b/llvm/projects/Stacker/test/Makefile index 7e384139dda..bb0ba05823e 100644 --- a/llvm/projects/Stacker/test/Makefile +++ b/llvm/projects/Stacker/test/Makefile @@ -37,8 +37,8 @@ all :: test_each test_each: $(TESTS) $(Echo) "Running Tests..." - $(Verb) LD_LIBRARY_PATH=$(BUILD_OBJ_ROOT)/lib/$(CONFIGURATION) \ - $(BUILD_SRC_DIR)/runtests $(BUILD_OBJ_DIR) $(TESTS) + $(Verb) LD_LIBRARY_PATH=$(PROJ_OBJ_ROOT)/lib/$(CONFIGURATION) \ + $(PROJ_SRC_DIR)/runtests $(PROJ_OBJ_DIR) $(TESTS) % : %.st Makefile testing.bc $(Echo) "Building $*" |