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

Chris Lattner lattner at cs.uiuc.edu
Mon Jun 16 10:52:01 PDT 2003


Changes in directory llvm/test/Programs/SingleSource:

Makefile.singlesrc updated: 1.19 -> 1.20

---
Log message:

Add LOC counting support for .cpp files


---
Diffs of the changes:

Index: llvm/test/Programs/SingleSource/Makefile.singlesrc
diff -u llvm/test/Programs/SingleSource/Makefile.singlesrc:1.19 llvm/test/Programs/SingleSource/Makefile.singlesrc:1.20
--- llvm/test/Programs/SingleSource/Makefile.singlesrc:1.19	Sat May 17 17:32:15 2003
+++ llvm/test/Programs/SingleSource/Makefile.singlesrc	Mon Jun 16 10:50:51 2003
@@ -27,6 +27,8 @@
 
 Output/%.LOC.txt: %.c
 	cat $< | wc -l > $@
+Output/%.LOC.txt: %.cpp
+	cat $< | wc -l > $@
 endif
 
 # FIXME: LIBS should be specified, not hardcoded to -lm





More information about the llvm-commits mailing list