X-Git-Url: https://git.ladys.computer/Shrine-XSLT/blobdiff_plain/e56ab0f26f35e32120971057b6db350175672c90..refs/heads/current:/GNUmakefile?ds=inline

diff --git a/GNUmakefile b/GNUmakefile
index a6b7b4a..e9d08c0 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -14,67 +14,79 @@ SHELL = /bin/sh
 #
 # ___
 #
-# © 2022 Lady [@ Lady’s Computer]
+# © 2022–2023 Lady [@ Lady’s Computer]
 #
 # This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
 # If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
 
 BASEIRI = http://example.com
 DATETIME = $(shell date -Iseconds)
+FEED_EXT = .atom
+FOOTER_SUFFIX = -footer.xml
+HEADER_SUFFIX = -header.xml
+OUTPUT_DIR = public
+SOURCE_DIR = sources
+SOURCE_EXT = .xml
+TEMPLATE = template.xml
 TRANSFORM = transform.xslt
 XSLT = xsltproc
 XSLTOPTS =
+YIELD = cat
+YIELD_DEPENDENCIES =
 
-headers := $(wildcard *-header.xml)
-footers := $(wildcard *-footer.xml)
-override prerequisites := $(TRANSFORM) $(headers) $(footers)
+headers := $(wildcard *$(HEADER_SUFFIX))
+footers := $(wildcard *$(FOOTER_SUFFIX))
+override prerequisites := $(YIELD_DEPENDENCIES) $(TEMPLATE) $(TRANSFORM) $(headers) $(footers)
 
-override indexsources := $(wildcard sources/index.xml sources/index-*.xml)
-override indices := $(patsubst sources/%.xml,public/%.html,$(indexsources))
+override indexsources := $(wildcard $(SOURCE_DIR)/index$(SOURCE_EXT) $(SOURCE_DIR)/index-*$(SOURCE_EXT))
+override indices := $(patsubst $(SOURCE_DIR)/%$(SOURCE_EXT),$(OUTPUT_DIR)/%.html,$(indexsources))
 
-override pagesources := $(filter-out $(indexsources),$(wildcard sources/*.xml sources/*/*.xml))
-override pages := $(patsubst sources/%.xml,public/%/index.html,$(pagesources))
+override pagesources := $(filter-out $(indexsources),$(wildcard $(SOURCE_DIR)/*$(SOURCE_EXT) $(SOURCE_DIR)/*/*$(SOURCE_EXT)))
+override pages := $(patsubst $(SOURCE_DIR)/%$(SOURCE_EXT),$(OUTPUT_DIR)/%/index.html,$(pagesources))
 
 override resourcesources := $(wildcard $(addsuffix /*,$(basename $(pagesources))))
-override resources := $(patsubst sources/%,public/%,$(resourcesources))
+override resources := $(patsubst $(SOURCE_DIR)/%,$(OUTPUT_DIR)/%,$(resourcesources))
 
-override feedsources := $(filter-out $(resourcesources),$(wildcard sources/*.atom sources/*/*.atom))
-override feeds := $(patsubst sources/%.atom,public/%.atom,$(feedsources))
+override feedsources := $(filter-out $(resourcesources),$(wildcard $(SOURCE_DIR)/*$(FEED_EXT) $(SOURCE_DIR)/*/*$(FEED_EXT)))
+override feeds := $(patsubst $(SOURCE_DIR)/%$(FEED_EXT),$(OUTPUT_DIR)/%.atom,$(feedsources))
 
 override content := $(indices) $(pages)
 
 # This function does the following :—
 #
-# • Calls `transform.xslt` with the `$(1)`, providing `$(BASEIRI)` and `$(DATETIME) as params and providing `$(2)` (minus the initial `public/`) as the param `OUTPUTPATH`.
+# • `$(YIELD)`s `$(1)`.
+#
+# • Calls `$(XSLT)` using `$(TRANSFORM)` with the result, providing `$(BASEIRI)` and `$(DATETIME) as params and providing `$(2)` (minus the initial `$(OUTPUT_DIR)/`) as the param `OUTPUTPATH`.
 #
 # • Removes any `xmlns` prefix declarations from output to `.html` files (with `sed`).
 #
 # • 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 $(OUTPUT_DIR)/%,/%,$(2))" $(TRANSFORM) -\
 	$(if $(filter %.html,$(2)),| sed 's/ xmlns:[0-9A-Za-z_-]*="[^"]*"//g',)\
 	| grep -v '^<!DOCTYPE \([^h]\|.[^t]\|..[^m]\|...[^l]\|....[^ >]\)'\
 	> $(2)
 
 all: $(content) $(resources) $(feeds);
 
-$(indices): public/%.html: sources/%.xml $(prerequisites)
+$(indices): $(OUTPUT_DIR)/%.html: $(SOURCE_DIR)/%$(SOURCE_EXT) $(prerequisites)
 	@echo "Generating $@…"
 	@mkdir -p $(dir $@)
 	@$(call makexslt,$<,$@)
 
-$(pages): public/%/index.html: sources/%.xml $(prerequisites)
+$(pages): $(OUTPUT_DIR)/%/index.html: $(SOURCE_DIR)/%$(SOURCE_EXT) $(prerequisites)
 	@echo "Generating $@…"
 	@mkdir -p $(dir $@)
 	@$(call makexslt,$<,$@)
 
-$(resources): public/%: sources/%
+$(resources): $(OUTPUT_DIR)/%: $(SOURCE_DIR)/%
 	@echo "Copying over $@…"
 	@mkdir -p $(dir $@)
 	@cp $< $@
 
-$(feeds): public/%.atom: sources/%.atom $(TRANSFORM)
+$(feeds): $(OUTPUT_DIR)/%.atom: $(SOURCE_DIR)/%$(FEED_EXT) $(TRANSFORM)
 	@echo "Generating $@…"
 	@mkdir -p $(dir $@)
 	@$(call makexslt,$<,$@)