[llvm-commits] CVS: llvm-test/SingleSource/UnitTests/Vector/Makefile
Chris Lattner
lattner at cs.uiuc.edu
Sun Mar 26 21:54:55 PST 2006
Changes in directory llvm-test/SingleSource/UnitTests/Vector:
Makefile updated: 1.1 -> 1.2
---
Log message:
Run altivec tests on PPC systems
---
Diffs of the changes: (+8 -1)
Makefile | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletion(-)
Index: llvm-test/SingleSource/UnitTests/Vector/Makefile
diff -u llvm-test/SingleSource/UnitTests/Vector/Makefile:1.1 llvm-test/SingleSource/UnitTests/Vector/Makefile:1.2
--- llvm-test/SingleSource/UnitTests/Vector/Makefile:1.1 Wed Mar 22 00:13:21 2006
+++ llvm-test/SingleSource/UnitTests/Vector/Makefile Sun Mar 26 23:54:42 2006
@@ -1,7 +1,14 @@
# SingleSource/UnitTests/Vector/Makefile
+LEVEL = ../../..
+
+include $(LEVEL)/Makefile.config
DIRS =
-LEVEL = ../../..
+
+ifeq ($(ARCH),PowerPC)
+DIRS += Altivec
+endif
+
include $(LEVEL)/SingleSource/Makefile.singlesrc
More information about the llvm-commits
mailing list