mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Don't count files in sysroot/ when counting lines.
This commit is contained in:
parent
ad17df4ff9
commit
23c144fe3f
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue