Fix linecount target not working.

This commit is contained in:
Jonas 'Sortie' Termansen 2016-03-24 22:24:01 +01:00
parent 7348cb0b9a
commit 34b5f061f9
1 changed files with 1 additions and 1 deletions

View File

@ -442,4 +442,4 @@ run-virtualbox-debug: sortix.iso
# Statistics
.PHONY: linecount
linecount:
wc -l `find . -type f | grep -Ev '\.(h|h\+\+|c$$|cpp|c\+\+|s|S|asm|kblayout|mak|sh)$$|(^|/)Makefile$$' | grep -Ev '^\./(\.git|sysroot|sysroot-overlay|ports|repository)(/|$$)'` | sort -n
wc -l `find . -type f | grep -E '\.(h|h\+\+|c|cpp|c\+\+|s|S|asm|kblayout|mak|sh)$$|(^|/)Makefile$$' | grep -Ev '^\./(\.git|sysroot|sysroot-overlay|ports|repository)(/|$$)'` | sort -n