From 370b421831ff8b45bbcfaa8d8eaa99e4d2620a13 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Sat, 3 Jun 2023 18:14:43 -0500 Subject: [PATCH] Reorganize makefiles to distinguish doc from db building --- Makefile | 408 +---------------------- make_files/README | 12 + help.mk => make_files/help.mk | 0 localize.mk => make_files/localize.mk | 0 make_files/make_docs.mk | 422 ++++++++++++++++++++++++ rwildcard.mk => make_files/rwildcard.mk | 0 6 files changed, 438 insertions(+), 404 deletions(-) create mode 100644 make_files/README rename help.mk => make_files/help.mk (100%) rename localize.mk => make_files/localize.mk (100%) create mode 100644 make_files/make_docs.mk rename rwildcard.mk => make_files/rwildcard.mk (100%) diff --git a/Makefile b/Makefile index e13c8ce..64cb340 100644 --- a/Makefile +++ b/Makefile @@ -24,412 +24,12 @@ # Then query the db for all tables and columns (and functions), delete # all the comments for each and insert new ones. -# Make "help" be the default target -include help.mk - -# Functions -include rwildcard.mk -include localize.mk - -# Conditionals -HTML_LOCAL_SRC := html_local_src -HTML_SRC := html_src -HTML_LOCAL_TARGET := local_html -HTML_TARGET := html -HTML_SINGLE_TARGET := html-single - -## -## Variables: -## -## LOCALHTML -## To generate multi-page html output and access it via "file://" URLs -## define this to something, e.g.:: make LOCALHTML=y html -ifdef LOCALHTML -ifndef SDB_HTML_FMT -SDB_HTML_FMT := localhtml -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 -SDB_HTML_FMT := html -endif -ifndef HTML_SRCDIR -HTML_SRCDIR := $(HTML_SRC) -endif -ifndef HTML_TARGETDIR -HTML_TARGETDIR:= $(HTML_TARGET) -endif -BUILDERNAME := dirhtml -endif - # # Variables # -PREFIX := doc +MAKE_FILES := make_files EMACS_BK_CHR := ~ -# The pdf file built by sphinx -PDF_NAME := sokwedbtechnical.pdf -# The pdf file names we copy out of the sphinx build dirs -PDF_A4_NAME := sokwedbtechnical_a4.pdf -PDF_LETTER_NAME := sokwedbtechnical_letter.pdf - -# Website location in file system -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)/tech_spec -HTML_SINGLE_PATH := $(DOC_ROOT)/tech_spec_single - -# Locations where docs are built by sphinx -SPHINX_PREFIX := $(PREFIX)/sphinx-doc -SPHINX_BUILDDIR := $(SPHINX_PREFIX)/build -SPHINX_BUILT_LATEX_A4 := $(SPHINX_BUILDDIR)/latex_a4 -SPHINX_BUILT_LATEX_LETTER := $(SPHINX_BUILDDIR)/latex_letter -SPHINX_BUILT_HTML := $(SPHINX_BUILDDIR)/$(HTML_TARGETDIR) -SPHINX_BUILT_HTML_SINGLE := $(SPHINX_BUILDDIR)/$(HTML_SINGLE_TARGET) - -# Locations of source files, original m4 and generated -STOCK_SRCDIR := $(PREFIX)/src -HTML_STATIC_DIR := $(PREFIX)/_static -HTML_SRCDIR := $(SPHINX_PREFIX)/$(HTML_SRCDIR) -HTML_IMAGEDIR := $(HTML_SRCDIR)/images -LATEX_SRCDIR := $(SPHINX_PREFIX)/latex_src -LATEX_IMAGEDIR := $(LATEX_SRCDIR)/images - -# Locations of m4 macros -M4_INCLUDE_PATH := include -M4_DOC_INCLUDE_PATH := doc/include -M4_DB_INCLUDE_PATH := db/include - -# The locations the targets are copied into -PDF_A4_TARGET := $(PREFIX)/$(PDF_A4_NAME) -PDF_LETTER_TARGET := $(PREFIX)/$(PDF_LETTER_NAME) - -# Rebuild when any of these change -DB_DEPENDS := Makefile $(wildcard $(M4_INCLUDE_PATH)/*.m4) \ - $(wildcard $(M4_DB_INCLUDE_PATH)/*.m4) -DOC_DEPENDS := Makefile $(wildcard $(M4_INCLUDE_PATH)/*.m4) \ - $(wildcard $(M4_DOC_INCLUDE_PATH)/*.m4) \ - $(PREFIX)/conf.py - -# Computed variables -SPHINX_VENV := $(PREFIX)/sphinx-venv -SPHINXBUILD := $(SPHINX_VENV)/bin/sphinx-build -n -c $(PREFIX) - -# Intermediate variables for filtering and transforming paths - -M4_BASEDIR := $(STOCK_SRCDIR) -# The m4 files that produce rst files -M4_FILES := $(call localize,$(call rwildcard,$(M4_BASEDIR)/,*.m4)) -M4_FILES := $(filter-out %epilog.inc.m4, $(M4_FILES)) - -# Source files that are not m4 -SOURCE_BASE := $(filter-out %$(EMACS_BK_CHR) $(M4_FILES), \ - $(call localize,$(call rwildcard,$(M4_BASEDIR)/,*))) - -# Already macro-expanded rst files and other source used to generate output -OLD_HTML_FILES := $(call localize,$(call rwildcard,$(HTML_SRCDIR)/,*)) -OLD_LATEX_FILES := $(call localize,$(call rwildcard,$(LATEX_SRCDIR)/,*)) - -# The html files to build and the directories that contain the files -HTML_RST_FILES := \ - $(patsubst %.m4,%.rst,\ - $(subst /$(STOCK_SRCDIR)/,/$(HTML_SRCDIR)/,$(M4_FILES))) -HTML_DIRS := $(sort $(dir $(HTML_RST_FILES))) - -# The latex files to build and the directories that contain the files -LATEX_RST_FILES := \ - $(patsubst %.m4,%.rst,\ - $(subst /$(STOCK_SRCDIR)/,/$(LATEX_SRCDIR)/,$(M4_FILES))) -LATEX_DIRS := $(sort $(dir $(LATEX_RST_FILES))) - -# The epilog -SOURCE_EPILOG := $(M4_BASEDIR)/epilog.inc.m4 -HTML_EPILOG := $(SPHINX_PREFIX)/html_epilog.inc -LATEX_EPILOG := $(SPHINX_PREFIX)/latex_epilog.inc - -# Where sphinx puts the pdf it builds -SPHINX_PDF_A4_TARGET := $(SPHINX_BUILT_LATEX_A4)/$(PDF_NAME) -SPHINX_PDF_LETTER_TARGET := $(SPHINX_BUILT_LATEX_LETTER)/$(PDF_NAME) - -# Image targets -INKSCAPE_BASEDIR := $(PREFIX)/diagrams/ -IMAGES_BASEDIR := $(PREFIX)/images/ -INKSCAPE_FILES := $(wildcard $(INKSCAPE_BASEDIR)*.svg) - -PARTIAL_PATHS := $(subst $(INKSCAPE_BASEDIR),$(IMAGES_BASEDIR), $(INKSCAPE_FILES)) -SVG_FILES := $(patsubst %.svg,%.svg,$(PARTIAL_PATHS)) -PNG_FILES := $(patsubst %.svg,%.png,$(PARTIAL_PATHS)) - -ifdef LOCALHTML -HTML_IMAGE_FILES := $(PNG_FILES) -else -HTML_IMAGE_FILES := $(SVG_FILES) -endif - -CLEAN_TARGETS := $(PREFIX)/requirements.txt.new \ - $(SPHINX_PREFIX) \ - $(HTML_RST_FILES) $(LATEX_RST_FILES) \ - $(SVG_FILES) $(PNG_FILES) \ - $(PDF_A4_TARGET) $(PDF_LETTER_TARGET) \ - $(IMAGES_BASEDIR) - -# Prerequsites for html generation -HTML_PREREQS := install-sphinx html_rst $(HTML_IMAGE_FILES) $(HTML_EPILOG) \ - $(HTML_STATIC_DIR) $(HTML_IMAGEDIR) - -## -## The available targets for make (make TARGET) are: -## - -## install Build all the docs and install on the website -.PHONY: install -install: install-html install-html-single install-pdf - -## html Make the html docs with sphinx -.PHONY: html -html: $(HTML_PREREQS) - $(SPHINXBUILD) -t html_epilog -b $(BUILDERNAME) \ - $(HTML_SRCDIR) $(SPHINX_BUILT_HTML) - -## html-single Make a single-page html doc with sphinx -.PHONY: html-single -html-single: $(HTML_PREREQS) - $(SPHINXBUILD) -t html_epilog -b singlehtml \ - $(HTML_SRCDIR) $(SPHINX_BUILT_HTML_SINGLE) - -## pdf Make pdf docs with sphinx -.PHONY: pdf -pdf: install-sphinx $(PDF_A4_TARGET) $(PDF_LETTER_TARGET) - -## mostlyclean Delete all the generated files but the virtualenv -.PHONY: mostlyclean -mostlyclean: - rm -rf $(CLEAN_TARGETS) - -## clean Delete all user generated files -.PHONY: clean -clean: mostlyclean destroy-sphinx-venv - -## -## Update the documenation tools to newer versions with: -## - -## update-sphinx Update sphinx venv packages to their latest versions -.PHONY: update-sphinx -update-sphinx: destroy-sphinx-venv install_new_sphinx - -## doc/requirements.txt.new -## Produce a sphinx package version requirement file -## able to reproduce the existing sphinx venv -## (Copy to doc/requirements.txt to make effective.) -# The grep works-around a bug that's in Debian 11's venv code -.PHONY: $(PREFIX)/requirements.txt.new -$(PREFIX)/requirements.txt.new: install-sphinx - $(SPHINX_VENV)/bin/pip freeze \ - | grep -vF 'pkg_resources==0.0.0' \ - > doc/requirements.txt.new - -## -## Lesser used targets are: -## - -## install-pdf Install the pdf docs on the website -.PHONY: install-pdf -install-pdf: $(PDF_A4_PATH) $(PDF_LETTER_PATH) $(DOC_ROOT) - -## install-html Install the html docs on the website -.PHONY: install-html -install-html: html $(DOC_ROOT) - rsync -rtO --delete --force $(SPHINX_BUILT_HTML)/ $(HTML_PATH) - -## install-html-single -## Install the single-page html doc on the website -.PHONY: install-html-single -install-html-single: html-single $(DOC_ROOT) - rsync -rtO --delete --force \ - $(SPHINX_BUILT_HTML_SINGLE)/ $(HTML_SINGLE_PATH) - -## install-sphinx Install sphinx in a virtualenv -.PHONY: install-sphinx -install-sphinx: sphinx-venv $(SPHINX_VENV)/bin/sphinx-build - -## report-old Report on outdated packages in the sphinx venv -.PHONY: report-old -report-old: - $(SPHINX_VENV)/bin/pip list -o - -## sphinx-venv Make a virtual environment for sphinx to run from -.PHONY: sphinx-venv -sphinx-venv: $(SPHINX_VENV) - -$(SPHINX_VENV): - python3 -m venv $(SPHINX_VENV) - python3 -m venv --upgrade-deps $(SPHINX_VENV) - -## destroy-sphinx-venv Delete the sphinx virtual environment -.PHONY: destroy-sphinx-venv -destroy-sphinx-venv: - rm -rf $(SPHINX_VENV) - -# The files we want for a pdf -## doc/sokwedbtechnical_a4.pdf -## Produce the A4 PDF technical docs -$(PDF_A4_TARGET): $(SPHINX_PDF_A4_TARGET) - cp $(SPHINX_PDF_A4_TARGET) $(PDF_A4_TARGET) - -## doc/sokwedbtechnical_letter.pdf -## Produce the US-Letter PDF technical docs -$(PDF_LETTER_TARGET): $(SPHINX_PDF_LETTER_TARGET) - cp $(SPHINX_PDF_LETTER_TARGET) $(PDF_LETTER_TARGET) - -## html_rst Build RST files from m4 source for HTML generation -.PHONY: html_rst -html_rst: $(HTML_DIRS) $(HTML_RST_FILES) $(HTML_SRCDIR) - # Get rid of anything old not a *.rst file, and not in the source - rm -rf \ - $(filter-out \ - $(HTML_RST_FILES) \ - $(subst /$(STOCK_SRCDIR)/,/$(HTML_SRCDIR)/,$(SOURCE_BASE)) \ - $(HTML_DIRS) \ - , $(OLD_HTML_FILES)) - # Populate a sourcedir for HTML output, without the RST files - rsync -a --exclude='*.m4' --exclude='*$(EMACS_BK_CHR)' \ - $(STOCK_SRCDIR)/ \ - $(HTML_SRCDIR) - -## latex_rst Build RST files from m4 source for LaTeX generation -.PHONY: latex_rst -latex_rst: $(LATEX_DIRS) $(LATEX_RST_FILES) $(LATEX_SRCDIR) - # Get rid of anything old not a *.rst file, and not in the source - rm -rf $(filter-out \ - $(LATEX_RST_FILES) \ - $(subst \ - /$(STOCK_SRCDIR)/,/$(LATEX_SRCDIR)/,$(SOURCE_BASE)) \ - $(LATEX_DIRS) \ - , $(OLD_LATEX_FILES)) - # Populate a sourcedir for LATEX output, without the RST files - rsync -a --exclude='*.m4' --exclude='*$(EMACS_BK_CHR)' \ - $(STOCK_SRCDIR)/ \ - $(LATEX_SRCDIR) - -## png_files Build *.png files from dia source -.PHONY: png_files -png_files: $(IMAGES_BASEDIR) $(PNG_FILES) - -## svg_files Build *.svg files from dia source -.PHONY: svg_files -svg_files: $(IMAGES_BASEDIR) $(SVG_FILES) - -# -# Internal targets -# - -# Ensure that sphinx is installed -$(SPHINX_VENV)/bin/sphinx-build: - $(SPHINX_VENV)/bin/pip install -r $(PREFIX)/requirements.txt sphinx - -# Install sphinx without a requirements.txt -.PHONY: install_new_sphinx -install_new_sphinx: $(SPHINX_VENV) - $(SPHINX_VENV)/bin/pip install sphinx - -# Install the pdfs on the website -$(PDF_A4_PATH): $(PDF_A4_TARGET) - rsync -a $(PDF_A4_TARGET) $(PDF_A4_PATH) -$(PDF_LETTER_PATH): $(PDF_LETTER_TARGET) - rsync -a $(PDF_LETTER_TARGET) $(PDF_LETTER_PATH) - -# Construct all the source dirs used to build output -$(LATEX_DIRS) $(HTML_DIRS) $(HTML_SRCDIR) $(LATEX_SRCDIR) \ - $(HTML_STATIC_DIR) $(DOC_ROOT) $(IMAGES_BASEDIR): - mkdir -p $@ - -# Sphinx requires all images be located in the $(SPHINX_PREFIX), -# at least if the paths are not relative to the source RST file and -# we don't want relative paths. So symlink the image dir into -# the sphinx-doc dir. -$(HTML_IMAGEDIR): - ln -s ../../images $(HTML_IMAGEDIR) -$(LATEX_IMAGEDIR): - ln -s ../../images $(LATEX_IMAGEDIR) - -# -# The files sphinx builds for a pdf -# It is unclear whether it's a good idea to run latexmk ourselves -# or whether we should try to use the sphinx auto-generated Makefile -# to do it, and try to keep the auto-generated Makefile under revision control. -# Running it ourselves seems simplest. -# - -# A4 pdf -$(SPHINX_PDF_A4_TARGET): latex_rst $(PNG_FILES) $(LATEX_EPILOG) \ - $(LATEX_IMAGEDIR) - $(SPHINXBUILD) -t a4paper -t latex_epilog -b latex \ - $(LATEX_SRCDIR) $(SPHINX_BUILT_LATEX_A4) - cd $(SPHINX_BUILT_LATEX_A4) \ - && latexmk -pdf -dvi- -ps- $(patsubst %.pdf,%.tex,$(PDF_NAME)) - -# Letter pdf -$(SPHINX_PDF_LETTER_TARGET): latex_rst $(PNG_FILES) $(LATEX_EPILOG) \ - $(LATEX_IMAGEDIR) - $(SPHINXBUILD) -t a4paper -t latex_epilog -b latex \ - $(LATEX_SRCDIR) $(SPHINX_BUILT_LATEX_LETTER) - cd $(SPHINX_BUILT_LATEX_LETTER) \ - && latexmk -pdf -dvi- -ps- $(patsubst %.pdf,%.tex,$(PDF_NAME)) - -# The rst_epilogs of conf.py. - -$(HTML_EPILOG): $(SOURCE_EPILOG) $(DOC_DEPENDS) - m4 -I $(M4_DOC_INCLUDE_PATH) \ - --define=sdb_output_fmt=$(SDB_HTML_FMT) \ - $< \ - > $@ -$(LATEX_EPILOG): $(SOURCE_EPILOG) $(DOC_DEPENDS) - m4 -I $(M4_DOC_INCLUDE_PATH) \ - --define=sdb_output_fmt=latex \ - $< \ - > $@ - -# -# Allow automatic variables to be used in prerequsites -# -.SECONDEXPANSION: - -# Construct *.png files -$(SVG_FILES): $$(patsubst %.svg,%.svg,\ - $$(subst $(IMAGES_BASEDIR),$(INKSCAPE_BASEDIR),$$@))\ - $(DOC_DEPENDS) - inkscape --export-filename=$@ --export-plain-svg $< - -# Construct *.png files -$(PNG_FILES): $$(patsubst %.png,%.svg,\ - $$(subst $(IMAGES_BASEDIR),$(INKSCAPE_BASEDIR),$$@))\ - $(DOC_DEPENDS) - inkscape --export-filename=$@ $< - -# Build all the RST for html output -$(HTML_RST_FILES): $$(patsubst %.rst,%.m4,\ - $$(subst $(HTML_SRCDIR),$(STOCK_SRCDIR),$$@)) \ - $(DOC_DEPENDS) - m4 -I $(M4_DOC_INCLUDE_PATH) \ - --define=sdb_output_fmt=$(SDB_HTML_FMT) \ - $< \ - > $@ - -# Build all the RST for latex output -$(LATEX_RST_FILES): $$(patsubst %.rst,%.m4,\ - $$(subst $(LATEX_SRCDIR),$(STOCK_SRCDIR),$$@)) \ - $(DOC_DEPENDS) - m4 -I $(M4_DOC_INCLUDE_PATH) \ - --define=sdb_output_fmt=latex \ - $(patsubst %.rst,%.m4,\ - $(subst $(LATEX_SRCDIR),$(STOCK_SRCDIR),$@)) \ - > $@ +# Make "help" be the default target +include $(MAKE_FILES)/help.mk +include $(MAKE_FILES)/make_docs.mk diff --git a/make_files/README b/make_files/README new file mode 100644 index 0000000..737cd68 --- /dev/null +++ b/make_files/README @@ -0,0 +1,12 @@ +It seems simpler to have one giant makefile, in part because of the +sharing of constants and so forth that go on between the documentation +and the database builds, as well as other inter-dependencies. + +Also, it's nice to have good user documentation, done in-code with +help.mk, that shows all possible targets. + +But to keep things organized, the documentation and the database +construction are kept in separate files. + +This means we've lots-o-globals, when it comes to variables and +targets. But the scale is not that large so it should work. diff --git a/help.mk b/make_files/help.mk similarity index 100% rename from help.mk rename to make_files/help.mk diff --git a/localize.mk b/make_files/localize.mk similarity index 100% rename from localize.mk rename to make_files/localize.mk diff --git a/make_files/make_docs.mk b/make_files/make_docs.mk new file mode 100644 index 0000000..a0b7b1a --- /dev/null +++ b/make_files/make_docs.mk @@ -0,0 +1,422 @@ +# Copyright (C) 2019, 2023 The Meme Factory, Inc. www.karlpinc.com +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +# Functions +include $(MAKE_FILES)/rwildcard.mk +include $(MAKE_FILES)/localize.mk + +# Conditionals +HTML_LOCAL_SRC := html_local_src +HTML_SRC := html_src +HTML_LOCAL_TARGET := local_html +HTML_TARGET := html +HTML_SINGLE_TARGET := html-single + +## ######################################################################## +## DOCUMENTATION TARGETS +## +## Variables: +## +## LOCALHTML +## To generate multi-page html output and access it via "file://" URLs +## define this to something, e.g.:: make LOCALHTML=y html +ifdef LOCALHTML +ifndef SDB_HTML_FMT +SDB_HTML_FMT := localhtml +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 +SDB_HTML_FMT := html +endif +ifndef HTML_SRCDIR +HTML_SRCDIR := $(HTML_SRC) +endif +ifndef HTML_TARGETDIR +HTML_TARGETDIR:= $(HTML_TARGET) +endif +BUILDERNAME := dirhtml +endif + +# +# Variables +# +DOCDIR := doc + +# The pdf file built by sphinx +PDF_NAME := sokwedbtechnical.pdf +# The pdf file names we copy out of the sphinx build dirs +PDF_A4_NAME := sokwedbtechnical_a4.pdf +PDF_LETTER_NAME := sokwedbtechnical_letter.pdf + +# Website location in file system +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)/tech_spec +HTML_SINGLE_PATH := $(DOC_ROOT)/tech_spec_single + +# Locations where docs are built by sphinx +SPHINX_DOCDIR := $(DOCDIR)/sphinx-doc +SPHINX_BUILDDIR := $(SPHINX_DOCDIR)/build +SPHINX_BUILT_LATEX_A4 := $(SPHINX_BUILDDIR)/latex_a4 +SPHINX_BUILT_LATEX_LETTER := $(SPHINX_BUILDDIR)/latex_letter +SPHINX_BUILT_HTML := $(SPHINX_BUILDDIR)/$(HTML_TARGETDIR) +SPHINX_BUILT_HTML_SINGLE := $(SPHINX_BUILDDIR)/$(HTML_SINGLE_TARGET) + +# Locations of source files, original m4 and generated +STOCK_SRCDIR := $(DOCDIR)/src +HTML_STATIC_DIR := $(DOCDIR)/_static +HTML_SRCDIR := $(SPHINX_DOCDIR)/$(HTML_SRCDIR) +HTML_IMAGEDIR := $(HTML_SRCDIR)/images +LATEX_SRCDIR := $(SPHINX_DOCDIR)/latex_src +LATEX_IMAGEDIR := $(LATEX_SRCDIR)/images + +# Locations of m4 macros +M4_INCLUDE_PATH := include +M4_DOC_INCLUDE_PATH := doc/include +M4_DB_INCLUDE_PATH := db/include + +# The locations the targets are copied into +PDF_A4_TARGET := $(DOCDIR)/$(PDF_A4_NAME) +PDF_LETTER_TARGET := $(DOCDIR)/$(PDF_LETTER_NAME) + +# Rebuild when any of these change +DB_DEPENDS := Makefile $(wildcard $(M4_INCLUDE_PATH)/*.m4) \ + $(wildcard $(M4_DB_INCLUDE_PATH)/*.m4) +DOC_DEPENDS := Makefile $(wildcard $(M4_INCLUDE_PATH)/*.m4) \ + $(wildcard $(M4_DOC_INCLUDE_PATH)/*.m4) \ + $(DOCDIR)/conf.py + +# Computed variables +SPHINX_VENV := $(DOCDIR)/sphinx-venv +SPHINXBUILD := $(SPHINX_VENV)/bin/sphinx-build -n -c $(DOCDIR) + +# Intermediate variables for filtering and transforming paths + +M4_BASEDIR := $(STOCK_SRCDIR) +# The m4 files that produce rst files +M4_FILES := $(call localize,$(call rwildcard,$(M4_BASEDIR)/,*.m4)) +M4_FILES := $(filter-out %epilog.inc.m4, $(M4_FILES)) + +# Source files that are not m4 +SOURCE_BASE := $(filter-out %$(EMACS_BK_CHR) $(M4_FILES), \ + $(call localize,$(call rwildcard,$(M4_BASEDIR)/,*))) + +# Already macro-expanded rst files and other source used to generate output +OLD_HTML_FILES := $(call localize,$(call rwildcard,$(HTML_SRCDIR)/,*)) +OLD_LATEX_FILES := $(call localize,$(call rwildcard,$(LATEX_SRCDIR)/,*)) + +# The html files to build and the directories that contain the files +HTML_RST_FILES := \ + $(patsubst %.m4,%.rst,\ + $(subst /$(STOCK_SRCDIR)/,/$(HTML_SRCDIR)/,$(M4_FILES))) +HTML_DIRS := $(sort $(dir $(HTML_RST_FILES))) + +# The latex files to build and the directories that contain the files +LATEX_RST_FILES := \ + $(patsubst %.m4,%.rst,\ + $(subst /$(STOCK_SRCDIR)/,/$(LATEX_SRCDIR)/,$(M4_FILES))) +LATEX_DIRS := $(sort $(dir $(LATEX_RST_FILES))) + +# The epilog +SOURCE_EPILOG := $(M4_BASEDIR)/epilog.inc.m4 +HTML_EPILOG := $(SPHINX_DOCDIR)/html_epilog.inc +LATEX_EPILOG := $(SPHINX_DOCDIR)/latex_epilog.inc + +# Where sphinx puts the pdf it builds +SPHINX_PDF_A4_TARGET := $(SPHINX_BUILT_LATEX_A4)/$(PDF_NAME) +SPHINX_PDF_LETTER_TARGET := $(SPHINX_BUILT_LATEX_LETTER)/$(PDF_NAME) + +# Image targets +INKSCAPE_BASEDIR := $(DOCDIR)/diagrams/ +IMAGES_BASEDIR := $(DOCDIR)/images/ +INKSCAPE_FILES := $(wildcard $(INKSCAPE_BASEDIR)*.svg) + +PARTIAL_PATHS := $(subst $(INKSCAPE_BASEDIR),$(IMAGES_BASEDIR), $(INKSCAPE_FILES)) +SVG_FILES := $(patsubst %.svg,%.svg,$(PARTIAL_PATHS)) +PNG_FILES := $(patsubst %.svg,%.png,$(PARTIAL_PATHS)) + +ifdef LOCALHTML +HTML_IMAGE_FILES := $(PNG_FILES) +else +HTML_IMAGE_FILES := $(SVG_FILES) +endif + +CLEAN_DOC_TARGETS := $(DOCDIR)/requirements.txt.new \ + $(SPHINX_DOCDIR) \ + $(HTML_RST_FILES) $(LATEX_RST_FILES) \ + $(SVG_FILES) $(PNG_FILES) \ + $(PDF_A4_TARGET) $(PDF_LETTER_TARGET) \ + $(IMAGES_BASEDIR) + +# Prerequsites for html generation +HTML_PREREQS := install-sphinx html_rst $(HTML_IMAGE_FILES) $(HTML_EPILOG) \ + $(HTML_STATIC_DIR) $(HTML_IMAGEDIR) + +## +## The available targets for make (make TARGET) are: +## + +## install-docs Build all the docs and install on the website +.PHONY: install-docs +install-docs: install-html install-html-single install-pdf + +## html Make the html docs with sphinx +.PHONY: html +html: $(HTML_PREREQS) + $(SPHINXBUILD) -t html_epilog -b $(BUILDERNAME) \ + $(HTML_SRCDIR) $(SPHINX_BUILT_HTML) + +## html-single Make a single-page html doc with sphinx +.PHONY: html-single +html-single: $(HTML_PREREQS) + $(SPHINXBUILD) -t html_epilog -b singlehtml \ + $(HTML_SRCDIR) $(SPHINX_BUILT_HTML_SINGLE) + +## pdf Make pdf docs with sphinx +.PHONY: pdf +pdf: install-sphinx $(PDF_A4_TARGET) $(PDF_LETTER_TARGET) + +## mostlyclean-docs Delete all the generated files but the virtualenv +.PHONY: mostlyclean-docs +mostlyclean-docs: + rm -rf $(CLEAN_DOC_TARGETS) + +## clean-docs Delete all user generated files +.PHONY: clean-docs +clean: mostlyclean-docs destroy-sphinx-venv + +## +## Update the documenation tools to newer versions with: +## + +## update-sphinx Update sphinx venv packages to their latest versions +.PHONY: update-sphinx +update-sphinx: destroy-sphinx-venv install_new_sphinx + +## doc/requirements.txt.new +## Produce a sphinx package version requirement file +## able to reproduce the existing sphinx venv +## (Copy to doc/requirements.txt to make effective.) +# The grep works-around a bug that's in Debian 11's venv code +.PHONY: $(DOCDIR)/requirements.txt.new +$(DOCDIR)/requirements.txt.new: install-sphinx + $(SPHINX_VENV)/bin/pip freeze \ + | grep -vF 'pkg_resources==0.0.0' \ + > doc/requirements.txt.new + +## +## Lesser used targets are: +## + +## install-pdf Install the pdf docs on the website +.PHONY: install-pdf +install-pdf: $(PDF_A4_PATH) $(PDF_LETTER_PATH) $(DOC_ROOT) + +## install-html Install the html docs on the website +.PHONY: install-html +install-html: html $(DOC_ROOT) + rsync -rtO --delete --force $(SPHINX_BUILT_HTML)/ $(HTML_PATH) + +## install-html-single +## Install the single-page html doc on the website +.PHONY: install-html-single +install-html-single: html-single $(DOC_ROOT) + rsync -rtO --delete --force \ + $(SPHINX_BUILT_HTML_SINGLE)/ $(HTML_SINGLE_PATH) + +## install-sphinx Install sphinx in a virtualenv +.PHONY: install-sphinx +install-sphinx: sphinx-venv $(SPHINX_VENV)/bin/sphinx-build + +## report-old Report on outdated packages in the sphinx venv +.PHONY: report-old +report-old: + $(SPHINX_VENV)/bin/pip list -o + +## sphinx-venv Make a virtual environment for sphinx to run from +.PHONY: sphinx-venv +sphinx-venv: $(SPHINX_VENV) + +$(SPHINX_VENV): + python3 -m venv $(SPHINX_VENV) + python3 -m venv --upgrade-deps $(SPHINX_VENV) + +## destroy-sphinx-venv Delete the sphinx virtual environment +.PHONY: destroy-sphinx-venv +destroy-sphinx-venv: + rm -rf $(SPHINX_VENV) + +# The files we want for a pdf +## doc/sokwedbtechnical_a4.pdf +## Produce the A4 PDF technical docs +$(PDF_A4_TARGET): $(SPHINX_PDF_A4_TARGET) + cp $(SPHINX_PDF_A4_TARGET) $(PDF_A4_TARGET) + +## doc/sokwedbtechnical_letter.pdf +## Produce the US-Letter PDF technical docs +$(PDF_LETTER_TARGET): $(SPHINX_PDF_LETTER_TARGET) + cp $(SPHINX_PDF_LETTER_TARGET) $(PDF_LETTER_TARGET) + +## html_rst Build RST files from m4 source for HTML generation +.PHONY: html_rst +html_rst: $(HTML_DIRS) $(HTML_RST_FILES) $(HTML_SRCDIR) + # Get rid of anything old not a *.rst file, and not in the source + rm -rf \ + $(filter-out \ + $(HTML_RST_FILES) \ + $(subst /$(STOCK_SRCDIR)/,/$(HTML_SRCDIR)/,$(SOURCE_BASE)) \ + $(HTML_DIRS) \ + , $(OLD_HTML_FILES)) + # Populate a sourcedir for HTML output, without the RST files + rsync -a --exclude='*.m4' --exclude='*$(EMACS_BK_CHR)' \ + $(STOCK_SRCDIR)/ \ + $(HTML_SRCDIR) + +## latex_rst Build RST files from m4 source for LaTeX generation +.PHONY: latex_rst +latex_rst: $(LATEX_DIRS) $(LATEX_RST_FILES) $(LATEX_SRCDIR) + # Get rid of anything old not a *.rst file, and not in the source + rm -rf $(filter-out \ + $(LATEX_RST_FILES) \ + $(subst \ + /$(STOCK_SRCDIR)/,/$(LATEX_SRCDIR)/,$(SOURCE_BASE)) \ + $(LATEX_DIRS) \ + , $(OLD_LATEX_FILES)) + # Populate a sourcedir for LATEX output, without the RST files + rsync -a --exclude='*.m4' --exclude='*$(EMACS_BK_CHR)' \ + $(STOCK_SRCDIR)/ \ + $(LATEX_SRCDIR) + +## png_files Build *.png files from dia source +.PHONY: png_files +png_files: $(IMAGES_BASEDIR) $(PNG_FILES) + +## svg_files Build *.svg files from dia source +.PHONY: svg_files +svg_files: $(IMAGES_BASEDIR) $(SVG_FILES) + +# +# Internal targets +# + +# Ensure that sphinx is installed +$(SPHINX_VENV)/bin/sphinx-build: + $(SPHINX_VENV)/bin/pip install -r $(DOCDIR)/requirements.txt sphinx + +# Install sphinx without a requirements.txt +.PHONY: install_new_sphinx +install_new_sphinx: $(SPHINX_VENV) + $(SPHINX_VENV)/bin/pip install sphinx + +# Install the pdfs on the website +$(PDF_A4_PATH): $(PDF_A4_TARGET) + rsync -a $(PDF_A4_TARGET) $(PDF_A4_PATH) +$(PDF_LETTER_PATH): $(PDF_LETTER_TARGET) + rsync -a $(PDF_LETTER_TARGET) $(PDF_LETTER_PATH) + +# Construct all the source dirs used to build output +$(LATEX_DIRS) $(HTML_DIRS) $(HTML_SRCDIR) $(LATEX_SRCDIR) \ + $(HTML_STATIC_DIR) $(DOC_ROOT) $(IMAGES_BASEDIR): + mkdir -p $@ + +# Sphinx requires all images be located in the $(SPHINX_DOCDIR), +# at least if the paths are not relative to the source RST file and +# we don't want relative paths. So symlink the image dir into +# the sphinx-doc dir. +$(HTML_IMAGEDIR): + ln -s ../../images $(HTML_IMAGEDIR) +$(LATEX_IMAGEDIR): + ln -s ../../images $(LATEX_IMAGEDIR) + +# +# The files sphinx builds for a pdf +# It is unclear whether it's a good idea to run latexmk ourselves +# or whether we should try to use the sphinx auto-generated Makefile +# to do it, and try to keep the auto-generated Makefile under revision control. +# Running it ourselves seems simplest. +# + +# A4 pdf +$(SPHINX_PDF_A4_TARGET): latex_rst $(PNG_FILES) $(LATEX_EPILOG) \ + $(LATEX_IMAGEDIR) + $(SPHINXBUILD) -t a4paper -t latex_epilog -b latex \ + $(LATEX_SRCDIR) $(SPHINX_BUILT_LATEX_A4) + cd $(SPHINX_BUILT_LATEX_A4) \ + && latexmk -pdf -dvi- -ps- $(patsubst %.pdf,%.tex,$(PDF_NAME)) + +# Letter pdf +$(SPHINX_PDF_LETTER_TARGET): latex_rst $(PNG_FILES) $(LATEX_EPILOG) \ + $(LATEX_IMAGEDIR) + $(SPHINXBUILD) -t a4paper -t latex_epilog -b latex \ + $(LATEX_SRCDIR) $(SPHINX_BUILT_LATEX_LETTER) + cd $(SPHINX_BUILT_LATEX_LETTER) \ + && latexmk -pdf -dvi- -ps- $(patsubst %.pdf,%.tex,$(PDF_NAME)) + +# The rst_epilogs of conf.py. + +$(HTML_EPILOG): $(SOURCE_EPILOG) $(DOC_DEPENDS) + m4 -I $(M4_DOC_INCLUDE_PATH) \ + --define=sdb_output_fmt=$(SDB_HTML_FMT) \ + $< \ + > $@ +$(LATEX_EPILOG): $(SOURCE_EPILOG) $(DOC_DEPENDS) + m4 -I $(M4_DOC_INCLUDE_PATH) \ + --define=sdb_output_fmt=latex \ + $< \ + > $@ + +# +# Allow automatic variables to be used in prerequsites +# +.SECONDEXPANSION: + +# Construct *.png files +$(SVG_FILES): $$(patsubst %.svg,%.svg,\ + $$(subst $(IMAGES_BASEDIR),$(INKSCAPE_BASEDIR),$$@))\ + $(DOC_DEPENDS) + inkscape --export-filename=$@ --export-plain-svg $< + +# Construct *.png files +$(PNG_FILES): $$(patsubst %.png,%.svg,\ + $$(subst $(IMAGES_BASEDIR),$(INKSCAPE_BASEDIR),$$@))\ + $(DOC_DEPENDS) + inkscape --export-filename=$@ $< + +# Build all the RST for html output +$(HTML_RST_FILES): $$(patsubst %.rst,%.m4,\ + $$(subst $(HTML_SRCDIR),$(STOCK_SRCDIR),$$@)) \ + $(DOC_DEPENDS) + m4 -I $(M4_DOC_INCLUDE_PATH) \ + --define=sdb_output_fmt=$(SDB_HTML_FMT) \ + $< \ + > $@ + +# Build all the RST for latex output +$(LATEX_RST_FILES): $$(patsubst %.rst,%.m4,\ + $$(subst $(LATEX_SRCDIR),$(STOCK_SRCDIR),$$@)) \ + $(DOC_DEPENDS) + m4 -I $(M4_DOC_INCLUDE_PATH) \ + --define=sdb_output_fmt=latex \ + $(patsubst %.rst,%.m4,\ + $(subst $(LATEX_SRCDIR),$(STOCK_SRCDIR),$@)) \ + > $@ diff --git a/rwildcard.mk b/make_files/rwildcard.mk similarity index 100% rename from rwildcard.mk rename to make_files/rwildcard.mk -- 2.34.1