diff options
author | Jonas Smedegaard <dr@jones.dk> | 2024-05-14 17:09:48 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2024-06-04 17:35:41 +0200 |
commit | 7dc18c9b5996f81ec6b2a86b6ff98bf6738251f1 (patch) | |
tree | 8259261c829a6dd553e5badd8c04d843ca26cb9b /Makefile | |
parent | 578fd539647448db92538717bdfeb899df63f399 (diff) |
fix make targets wordcount-of-*: relax appendix match
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -112,7 +112,7 @@ $(ARTICLES:%=screening-of-%): screening-of-%: $(ARTICLES:%=wordcount-of-%): wordcount-of-%: QUARTO_LOG_LEVEL=quiet \ quarto render $*/index.qmd --to plain --columns=9999 --output - \ - | perl -nE 'next if /^-*$$/; $$bilag += $$_ =~ "^Bilag 1\\b"; $$chars += length unless $$bilag; END { say $$chars }' + | perl -nE 'next if /^-*$$/; $$bilag += $$_ =~ "^Bilag\\b"; $$chars += length unless $$bilag; END { say $$chars }' $(ARTICLES:%=turtle-from-%): turtle-from-%: @bin/xmp2rdfxml _site/$*/S*.pdf \ |