From: Lady Date: Thu, 26 Jan 2023 05:12:35 +0000 (-0800) Subject: Allow custom `YIELD` script for yielding sources X-Git-Tag: 0.4.0~1 X-Git-Url: https://git.ladys.computer/Shrine-XSLT/commitdiff_plain/820a47bd00e3b7d5a28b5392e1f2a56584c4a38e Allow custom `YIELD` script for yielding sources By default, this is just `cat`, which will simply pipe the source content into the transformation, but one might change this to be `cat doctype.dtd`, for example, to add a doctype to the beginning of every source file, or a more complicated script. `YIELD_DEPENDENCIES` can be used to specify dependencies of the `YIELD` script to ensure the files are rebuilt when a dependency changes. --- diff --git a/GNUmakefile b/GNUmakefile index 7f20dea..fd272ee 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -26,10 +26,12 @@ SOURCE_EXT = .xml TRANSFORM = transform.xslt XSLT = xsltproc XSLTOPTS = +YIELD = cat +YIELD_DEPENDENCIES = headers := $(wildcard *-header.xml) footers := $(wildcard *-footer.xml) -override prerequisites := $(TRANSFORM) $(headers) $(footers) +override prerequisites := $(YIELD_DEPENDENCIES) template.xml $(TRANSFORM) $(headers) $(footers) override indexsources := $(wildcard sources/index$(SOURCE_EXT) sources/index-*$(SOURCE_EXT)) override indices := $(patsubst sources/%$(SOURCE_EXT),public/%.html,$(indexsources)) @@ -54,7 +56,8 @@ override content := $(indices) $(pages) # • Removes any doctype for root elements other than `html` (with `grep -v`). # # • Saves the output to `$(2)`. -override makexslt = $(XSLT) --nonet --novalid $(XSLTOPTS) --stringparam BASEIRI "$(BASEIRI)" --stringparam DATETIME "$(DATETIME)" --stringparam OUTPUTPATH "$(patsubst public/%,/%,$(2))" transform.xslt $(1)\ +override makexslt = $(YIELD) $(1)\ + | $(XSLT) --nonet --novalid $(XSLTOPTS) --stringparam BASEIRI "$(BASEIRI)" --stringparam DATETIME "$(DATETIME)" --stringparam OUTPUTPATH "$(patsubst public/%,/%,$(2))" transform.xslt -\ $(if $(filter %.html,$(2)),| sed 's/ xmlns:[0-9A-Za-z_-]*="[^"]*"//g',)\ | grep -v '^]\)'\ > $(2)