From e42f83493f7888b86ed23909d171ee61df8ea476 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Tue, 9 May 2023 17:11:20 -0500 Subject: [PATCH] Separate target dirs for local and non-local html Since local html now uses a html builder but non-local html uses dirhtml, sharing a target directory results is "extra stuff" leftover from the other kind of build. We don't want that. --- Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1fc26ef..7820884 100644 --- a/Makefile +++ b/Makefile @@ -34,6 +34,8 @@ include localize.mk # Conditionals HTML_LOCAL_SRC := html_local_src HTML_SRC := html_src +HTML_LOCAL_TARGET := local_html +HTML_TARGET := html ## ## Variables: @@ -48,6 +50,9 @@ endif ifndef HTML_SRCDIR HTML_SRCDIR := $(HTML_LOCAL_SRC) endif +ifndef HTML_TARGETDIR +HTML_TARGETDIR := $(HTML_LOCAL_TARGET) +endif BUILDERNAME := html else ifndef SDB_HTML_FMT @@ -56,6 +61,9 @@ endif ifndef HTML_SRCDIR HTML_SRCDIR := $(HTML_SRC) endif +ifndef HTML_TARGETDIR +HTML_TARGETDIR:= $(HTML_TARGET) +endif BUILDERNAME := dirhtml endif @@ -75,7 +83,7 @@ HTML_PATH := $(DOC_ROOT)/doc SPHINX_PREFIX := $(PREFIX)/sphinx-doc SPHINX_BUILDDIR := $(SPHINX_PREFIX)/build SPHINX_BUILT_LATEX := $(SPHINX_BUILDDIR)/latex -SPHINX_BUILT_HTML := $(SPHINX_BUILDDIR)/html +SPHINX_BUILT_HTML := $(SPHINX_BUILDDIR)/$(HTML_TARGETDIR) # Locations of source files, original m4 and generated STOCK_SRCDIR := $(PREFIX)/src -- 2.34.1