summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 0b77820..d6d5675 100644
--- a/Makefile
+++ b/Makefile
@@ -80,12 +80,12 @@ $(ARTICLES:%=wordcount-of-%): wordcount-of-%:
quarto render $*/index.qmd --to plain --columns=9999 --output - \
| perl -nE 'next if /^-*$$/; $$bilag += $$_ =~ "^Bilag 1\\b"; $$chars += length unless $$bilag; END { say $$chars }'
-$(ARTICLES:%=turtle-from-%): turtle-from-%: _site/%/index.pdf
- @bin/xmp2rdfxml _site/$*/index.pdf \
+$(ARTICLES:%=turtle-from-%): turtle-from-%:
+ @bin/xmp2rdfxml _site/$*/S*.pdf \
| rapper -i rdfxml -o turtle - $(BASE_IRI)$*/
-$(ARTICLES:%=dotgraph-from-%): dotgraph-from-%: _site/%/index.pdf
- @bin/xmp2rdfxml _site/$*/index.pdf \
+$(ARTICLES:%=dotgraph-from-%): dotgraph-from-%:
+ @bin/xmp2rdfxml _site/$*/S*.pdf \
| rapper -i rdfxml -o dot - $(BASE_IRI)$*/
diff-all: $(ARTICLES:%=diff-of-%)