summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2024-03-19 13:49:52 +0100
committerJonas Smedegaard <dr@jones.dk>2024-03-19 13:49:52 +0100
commit8dd5c8061a629704557e1f83669006d57d264a51 (patch)
tree17efd61ca0ad772dcad2f8861ff7addc36a73bf7 /Makefile
parentb779e8ecde3ba8d29f14ac2a1d84feeb03e13322 (diff)
fix make targets turtle-from-* dotgraph-from-*
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-%)