have make copy the HTML output to a custom location

This commit is contained in:
Brian S. Stephan 2025-07-21 17:22:25 -05:00
parent 281a0acbe1
commit 28569236c3
Signed by: bss
GPG Key ID: 3DE06D3180895FCB

View File

@ -50,6 +50,9 @@ $(TMPDIR)/%.patch: $(DE_OGCSRD_PATCH_DIR)/%.patch
web: $(CCSRD) web: $(CCSRD)
mkdir -p $(WEBDIR) mkdir -p $(WEBDIR)
pandoc $(CCSRD) --data-dir=$(STYLESDIR) --template bss -s -o $(HTML_OUT) pandoc $(CCSRD) --data-dir=$(STYLESDIR) --template bss -s -o $(HTML_OUT)
ifdef DEST_FILE
cp $(HTML_OUT) $(DEST_FILE)
endif
# BUILD STEPS # BUILD STEPS