From 2335a6324a2fe62f05fd01a0a0900bc09dac42ca Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Thu, 5 Oct 2023 11:33:38 -0400 Subject: [PATCH] build: Update to latest profile template --- include/common.mk | 10 +++++----- include/prologue.mk | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/include/common.mk b/include/common.mk index aafd8e0e..424e8226 100644 --- a/include/common.mk +++ b/include/common.mk @@ -1,15 +1,15 @@ # See https://github.com/datamade/data-making-guidelines -# See http://clarkgrubb.com/makefile-style-guide#phony-target-arg +# See https://clarkgrubb.com/makefile-style-guide#phony-target-arg FORCE: -# http://blog.jgc.org/2007/06/escaping-comma-and-space-in-gnu-make.html +# https://blog.jgc.org/2007/06/escaping-comma-and-space-in-gnu-make.html COMMA := , SPACE := SPACE += COMMA_SEPARATED_TRANSLATIONS=$(subst $(SPACE),$(COMMA),$(TRANSLATIONS:.%=%)) -# See http://clarkgrubb.com/makefile-style-guide#phony-targets +# See https://clarkgrubb.com/makefile-style-guide#phony-targets .PHONY: clean clean: rm -rf $(BUILD_DIR) @@ -45,7 +45,7 @@ extract_schema: $(POT_DIR) # The codelist CSV files and JSON Schema files must be present for the `csv-table-no-translate` and `jsonschema` # directives to succeed, but the contents of the files have no effect on the generated .pot files. -# See http://www.sphinx-doc.org/en/stable/builders.html#sphinx.builders.gettext.MessageCatalogBuilder +# See https://www.sphinx-doc.org/en/master/usage/builders/index.html#sphinx.builders.gettext.MessageCatalogBuilder .PHONY: extract_markdown extract_markdown: current_lang.en sphinx-build -nW --keep-going -q -b gettext $(DOCS_DIR) $(POT_DIR) @@ -110,7 +110,7 @@ clean_current_lang: ### Build # Build the source documentation. -# See http://www.sphinx-doc.org/en/stable/builders.html#sphinx.builders.html.DirectoryHTMLBuilder +# See https://www.sphinx-doc.org/en/master/usage/builders/index.html#sphinx.builders.html.DirectoryHTMLBuilder .PHONY: build_source build_source: current_lang.en sphinx-build -nW --keep-going -q -b dirhtml $(DOCS_DIR) $(BUILD_DIR)/en diff --git a/include/prologue.mk b/include/prologue.mk index b512b7b3..166f3ab5 100644 --- a/include/prologue.mk +++ b/include/prologue.mk @@ -1,4 +1,4 @@ -# See http://clarkgrubb.com/makefile-style-guide#prologue +# See https://clarkgrubb.com/makefile-style-guide#prologue MAKEFLAGS += --warn-undefined-variables SHELL := bash .SHELLFLAGS := -eu -o pipefail -c