From 28569236c3d41ea326a83eade1978f3870d2f0bd Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Mon, 21 Jul 2025 17:22:25 -0500 Subject: [PATCH] have make copy the HTML output to a custom location --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 3cd1c30..7efc92c 100644 --- a/Makefile +++ b/Makefile @@ -50,6 +50,9 @@ $(TMPDIR)/%.patch: $(DE_OGCSRD_PATCH_DIR)/%.patch web: $(CCSRD) mkdir -p $(WEBDIR) pandoc $(CCSRD) --data-dir=$(STYLESDIR) --template bss -s -o $(HTML_OUT) +ifdef DEST_FILE + cp $(HTML_OUT) $(DEST_FILE) +endif # BUILD STEPS