From 0b07e4e4e3905c5836bb60b9cda24ce7f572d6a1 Mon Sep 17 00:00:00 2001 From: Jeff Lindsay Date: Sun, 30 Jun 2013 17:56:02 -0500 Subject: [PATCH] more specific line counts --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bace8047f..2158f9bd7 100644 --- a/Makefile +++ b/Makefile @@ -26,4 +26,9 @@ pluginhook: cd /tmp && dpkg -i pluginhook_0.1.0_amd64.deb count: - cat receiver dokku bootstrap.sh | wc -l \ No newline at end of file + @echo "Core lines:" + @cat receiver dokku bootstrap.sh | wc -l + @echo "Plugin lines:" + @find plugins -type f | xargs cat | wc -l + @echo "Test lines:" + @find tests -type f | xargs cat | wc -l \ No newline at end of file