[llvm-commits] CVS: llvm/test/Programs/SingleSource/CustomChecked/Makefile

John Criswell criswell at cs.uiuc.edu
Sat Sep 6 10:16:27 PDT 2003


Changes in directory llvm/test/Programs/SingleSource/CustomChecked:

Makefile updated: 1.4 -> 1.5

---
Log message:

Checkin of autoconf-style object root.

Adjusted the Makefile rules to handle building outside the source directory.


---
Diffs of the changes:

Index: llvm/test/Programs/SingleSource/CustomChecked/Makefile
diff -u llvm/test/Programs/SingleSource/CustomChecked/Makefile:1.4 llvm/test/Programs/SingleSource/CustomChecked/Makefile:1.5
--- llvm/test/Programs/SingleSource/CustomChecked/Makefile:1.4	Mon Sep  1 10:29:18 2003
+++ llvm/test/Programs/SingleSource/CustomChecked/Makefile	Sat Sep  6 10:13:45 2003
@@ -34,19 +34,19 @@
 
 $(PROGRAMS_TO_TEST:%=Output/%.run-lli): \
 Output/%.run-lli: Output/%.llvm.bc $(LLI)
-	-$(TESTRUNR) $(filter $*.%, $(Source)) "$(LLI) $(LLI_OPTS) $<" $@
+	-$(TESTRUNR) $(filter $(SourceDir)$*.%, $(Source)) "$(LLI) $(LLI_OPTS) $<" $@
 
 $(PROGRAMS_TO_TEST:%=Output/%.run-jit): \
 Output/%.run-jit: Output/%.llvm.bc $(LLI)
-	-$(TESTRUNR) $(filter $*.%, $(Source)) "$(LLI) $(JIT_OPTS) $<" $@
+	-$(TESTRUNR) $(filter $(SourceDir)$*.%, $(Source)) "$(LLI) $(JIT_OPTS) $<" $@
 
 $(PROGRAMS_TO_TEST:%=Output/%.run-llc): \
 Output/%.run-llc: Output/%.llc
-	-$(TESTRUNR) $(filter $*.%, $(Source)) "$< $(RUN_OPTIONS)" $@
+	-$(TESTRUNR) $(filter $(SourceDir)$*.%, $(Source)) "$< $(RUN_OPTIONS)" $@
 
 $(PROGRAMS_TO_TEST:%=Output/%.run-cbe): \
 Output/%.run-cbe: Output/%.cbe
-	-$(TESTRUNR) $(filter $*.%, $(Source)) "$< $(RUN_OPTIONS)" $@
+	-$(TESTRUNR) $(filter $(SourceDir)$*.%, $(Source)) "$< $(RUN_OPTIONS)" $@
 
 
 $(PROGRAMS_TO_TEST:%=Output/%.exe-lli): \





More information about the llvm-commits mailing list