[llvm-commits] CVS: llvm/test/DSGraphs/Makefile

Chris Lattner lattner at cs.uiuc.edu
Fri Nov 8 14:48:00 PST 2002


Changes in directory llvm/test/DSGraphs:

Makefile updated: 1.6 -> 1.7

---
Log message:

Sort graphs by total time, don't perform make clean


---
Diffs of the changes:

Index: llvm/test/DSGraphs/Makefile
diff -u llvm/test/DSGraphs/Makefile:1.6 llvm/test/DSGraphs/Makefile:1.7
--- llvm/test/DSGraphs/Makefile:1.6	Thu Nov  7 01:16:05 2002
+++ llvm/test/DSGraphs/Makefile	Fri Nov  8 14:47:06 2002
@@ -54,11 +54,11 @@
 	$(LCC) $< -c
 
 report.raw.out: $(LANALYZE)
-	$(MAKE) clean
 	gmake all 2>&1 | tee report.raw.out	
 
 report: report.raw.out
 	-mv -f report.no-times.txt report.no-times.old.txt
 	-mv -f report.txt report.old.txt
-	./generate_report.pl -no-times report.raw.out > report.no-times.txt
-	./generate_report.pl report.raw.out 2>&1 | tee report.txt
+	./generate_report.pl -no-times report.raw.out | sort --key=2 -r > report.no-times.txt
+	./generate_report.pl report.raw.out | sort --key=2 -r | tee report.txt
+





More information about the llvm-commits mailing list