summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-06-30 11:20:41 +0100
committerJoe Carstairs <me@joeac.net>2026-06-30 11:21:08 +0100
commit39f62e8405e2585ef87a69cad0a4f246d4cac880 (patch)
treeb61e577b6502c80bbef5579e61268482eb6c7207
parentf3ebf3c208ff5dcadbfc8cb8b1b154c98f6d9210 (diff)
output of make wordcount makes clear that footnotes, references not
included
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3025a84..45f0260 100644
--- a/Makefile
+++ b/Makefile
@@ -98,7 +98,9 @@ wordcount: $(DISSERTATION_MARKDOWN)
echo "Chapter 3: ~$$(cat $(CHAPTER_3_MARKDOWN) | wc -w)"
echo "Chapter 4: ~$$(cat $(CHAPTER_4_MARKDOWN) | wc -w)"
echo "Conclusion: ~$$(cat $(CONCLUSION_MARKDOWN) | wc -w)"
- echo "Total: ~$$(cat $(DISSERTATION_MARKDOWN) | tail -n +6 | wc -w)"
+ echo "Footnotes: ???"
+ echo "References: ???"
+ echo "Total: ~$$(cat $(DISSERTATION_MARKDOWN) | tail -n +6 | wc -w) + footnotes"
clean:
rm -f $(LOG_PDF) $(SCRAPBOOK_PDF) $(DISSERTATION_MARKDOWN) $(DISSERTATION_PDF)