From e6c46fbeb6fb64f0112766db0f39e8b3c574d6c6 Mon Sep 17 00:00:00 2001 From: Bill Traynor Date: Thu, 13 Jun 2024 19:10:57 -0400 Subject: Add build targets for PDF, EPUB, and HTML (#1462) This adds specific build targets for PDF, EPUB, or HTML. --- Makefile | 5 ++++- docs-resources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8093ef9..be5433c 100644 --- a/Makefile +++ b/Makefile @@ -56,11 +56,14 @@ REQUIRES := --require=asciidoctor-bibtex \ --require=asciidoctor-lists \ --require=asciidoctor-mathematical -.PHONY: all build clean build-container build-no-container build-docs +.PHONY: all build clean build-container build-no-container build-docs build-pdf build-html build-epub all: build build-docs: $(DOCS_PDF) $(DOCS_HTML) $(DOCS_EPUB) +build-pdf: $(DOCS_PDF) +build-html: $(DOCS_HTML) +build-epub: $(DOCS_EPUB) vpath %.adoc $(SRC_DIR) diff --git a/docs-resources b/docs-resources index 7a6ceac..35203a4 160000 --- a/docs-resources +++ b/docs-resources @@ -1 +1 @@ -Subproject commit 7a6ceaccd2cc0a8bb1fedf57a232af028afc0b9c +Subproject commit 35203a4f123d0be162b6b5ea213a657b594f8c36 -- cgit v1.1