diff options
author | Jonas Smedegaard <dr@jones.dk> | 2024-03-19 13:49:52 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2024-03-19 13:49:52 +0100 |
commit | 8dd5c8061a629704557e1f83669006d57d264a51 (patch) | |
tree | 17efd61ca0ad772dcad2f8861ff7addc36a73bf7 /Makefile | |
parent | b779e8ecde3ba8d29f14ac2a1d84feeb03e13322 (diff) |
fix make targets turtle-from-* dotgraph-from-*
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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-%) |