From ee686734e82af74bbaf330f140a1758326201da1 Mon Sep 17 00:00:00 2001 From: Nicholas Karlson Date: Mon, 19 Jan 2026 11:34:45 -0800 Subject: [PATCH] Chore: add make target to rebuild Track D workbook ZIP --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 5be70fe..2018b4d 100644 --- a/Makefile +++ b/Makefile @@ -33,6 +33,7 @@ help: @echo " business-ch07 - Track D Chapter 7 analysis (prepare accounting data for analysis)" @echo " business-ch08 - Track D Chapter 8 analysis (descriptive stats for financial performance)" @echo " business-ch09 - Track D Chapter 9 analysis (plotting/reporting style contract + example figures)" + @echo " trackd-zip - rebuild Track D workbook ZIP from workbooks/track_d_template/" @echo " lint - ruff check" @echo " lint-fix - ruff check with fixes" @echo " test - pytest" @@ -44,6 +45,10 @@ help: .PHONY: docs docs-strict docs-workbook docs-workbook-strict +.PHONY: trackd-zip +trackd-zip: + $(PYTHON) tools/build_workbook_zip.py + docs: $(PYTHON) -m sphinx -b html docs/source docs/build/html