Don't count files in sysroot/ when counting lines.

This commit is contained in:
Jonas 'Sortie' Termansen 2011-10-06 10:17:36 +02:00
parent ad17df4ff9
commit 23c144fe3f
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ $(INITRD): suball
# Statistics
linecount:
wc -l `find | grep -E '\.h$$|\.c$$|\.cpp$$|\.s$$|\.asm$$|Makefile$$'` | sort -n
wc -l `find | grep -E '\.h$$|\.c$$|\.cpp$$|\.s$$|\.asm$$|Makefile$$' | grep -v sysroot` | sort -n
# Local machine