From 448025c8de1435d65d3da5d09136c9d2bf3fa3c0 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Tue, 9 May 2023 22:34:25 -0500 Subject: [PATCH] Change URL paths for docs Have a separate dir for html within docs, as is required by the process that copies the generated html because anything not generated is removed. And put the pdf documents in the doc directory. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 572fa73..796e23e 100644 --- a/Makefile +++ b/Makefile @@ -80,10 +80,10 @@ PDF_A4_NAME := sokwedbtechnical_a4.pdf PDF_LETTER_NAME := sokwedbtechnical_letter.pdf # Website location in file system -DOC_ROOT := /var/www/html +DOC_ROOT := /var/www/html/doc PDF_A4_PATH := $(DOC_ROOT)/$(PDF_A4_NAME) PDF_LETTER_PATH := $(DOC_ROOT)/$(PDF_LETTER_NAME) -HTML_PATH := $(DOC_ROOT)/doc +HTML_PATH := $(DOC_ROOT)/tech_spec # Locations where docs are built by sphinx SPHINX_PREFIX := $(PREFIX)/sphinx-doc -- 2.34.1