From 1ba12c539698aeaab7f352b0f97a290494c2f5bb Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Fri, 9 Jan 2026 13:52:58 -1000 Subject: [PATCH] ;examples: debconf: cleanups --- examples/debconf/Makefile | 21 ++++++++++++--------- examples/debconf/README.md | 8 ++++---- 2 files changed, 16 insertions(+), 13 deletions(-) diff --git a/examples/debconf/Makefile b/examples/debconf/Makefile index e6cde92a4..cc7f04bcd 100644 --- a/examples/debconf/Makefile +++ b/examples/debconf/Makefile @@ -1,17 +1,17 @@ recent: \ - dc25 \ dc24 \ + dc25 \ all: \ - dc25 \ - dc24 \ - dc23 \ - dc22 \ - dc21 \ - dc20 \ - dc19 \ - dc18 \ dc17 \ + dc18 \ + dc19 \ + dc20 \ + dc21 \ + dc22 \ + dc23 \ + dc24 \ + dc25 \ # make dc-YY - clone the budget directory for this year and make it hledger-readable dc%: @@ -26,6 +26,9 @@ check-%: # maintenance +clean: + rm -rf dc* + # make rg-PAT - ripgrep for PAT in ledger,inc,db files in all years rg-%: rg -g '*.{ledger,inc,db}' '$*' diff --git a/examples/debconf/README.md b/examples/debconf/README.md index e61504b08..a211d05fd 100644 --- a/examples/debconf/README.md +++ b/examples/debconf/README.md @@ -4,9 +4,9 @@ DebConf does their accounting with Ledger. Eg: Each year has its own repo, and the repos are big. -To clone just the accounting data for a few recent years: `make` -To clone all years, starting 2017: `make all` -Some patches for hledger readability will be applied. (These might need updating from time to time.) +To clone just the accounting data for a few recent years: `make`\ +Or to clone all years, starting 2017: `make all` -To check hledger readability: `make check-hledger` +Some patches for hledger readability will be applied; those might need updating from time to time.\ +To check hledger readability: `make check-hledger`\ To check ledger readability: `make check-ledger`