[llvm-commits] CVS: llvm/test/Makefile.tests

Vikram Adve vadve at cs.uiuc.edu
Tue Jul 8 13:41:01 PDT 2003


Changes in directory llvm/test:

Makefile.tests updated: 1.68 -> 1.69

---
Log message:

Use libinstr.$(ARCH).a instead of libinstr64.a
Also, $(RM) needs -f flag.


---
Diffs of the changes:

Index: llvm/test/Makefile.tests
diff -u llvm/test/Makefile.tests:1.68 llvm/test/Makefile.tests:1.69
--- llvm/test/Makefile.tests:1.68	Sat Jun 28 17:35:46 2003
+++ llvm/test/Makefile.tests	Tue Jul  8 13:39:51 2003
@@ -75,14 +75,14 @@
     endif
 endif
 ifeq ($(DOTRACING), yes)
-    TRACELIBS := -L$(LEVEL)/test/Libraries/Output -linstr64
+    TRACELIBS := -L$(LEVEL)/test/Libraries/Output -linstr.$(ARCH)
 endif
 
 
 LLCLIBS := $(LLCLIBS) -lm
 
 clean::
-	$(RM) a.out core
+	$(RM) -f a.out core
 	$(RM) -rf Output/
 
 # Compile from X.c to Output/X.ll





More information about the llvm-commits mailing list