diff --git a/Makefile b/Makefile index 4926769..732ded7 100644 --- a/Makefile +++ b/Makefile @@ -55,10 +55,10 @@ test: mle $(mle_unit_tests) ./mle -v && export MLE=$$(pwd)/mle && $(MAKE) -C tests sloc: - find . -name '*.c' -or -name '*.h' | \ - grep -Pv '(termbox|test|ut|lua)' | \ - xargs -rn1 cat | \ - wc -l + find . -maxdepth 1 \ + '(' -name '*.c' -or -name '*.h' ')' \ + -not -name 'termbox2.h' \ + -exec cat {} ';' | wc -l install: mle install -v -d $(DESTDIR)$(prefix)/bin diff --git a/README.md b/README.md index eb888fb..d597ca7 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Runs on Linux, Windows (Cygwin or WSL), FreeBSD, macOS, and more. ### Features -* Small codebase (~11k SLOC) +* Small codebase (~12k SLOC) * Full UTF-8 support * Syntax highlighting * Stackable key maps (modes)