From 8dd5c8061a629704557e1f83669006d57d264a51 Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Tue, 19 Mar 2024 13:49:52 +0100 Subject: fix make targets turtle-from-* dotgraph-from-* --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile') 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-%) -- cgit v1.2.3