aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Traynor <wmat@riscv.org>2024-06-13 19:10:57 -0400
committerGitHub <noreply@github.com>2024-06-13 16:10:57 -0700
commite6c46fbeb6fb64f0112766db0f39e8b3c574d6c6 (patch)
treeefe74100c91126ad5f384452b0feb12150f77777
parent434766879345a17eb5ce9fc0758055ef15aacf9a (diff)
downloadriscv-isa-manual-e6c46fbeb6fb64f0112766db0f39e8b3c574d6c6.zip
riscv-isa-manual-e6c46fbeb6fb64f0112766db0f39e8b3c574d6c6.tar.gz
riscv-isa-manual-e6c46fbeb6fb64f0112766db0f39e8b3c574d6c6.tar.bz2
Add build targets for PDF, EPUB, and HTML (#1462)
This adds specific build targets for PDF, EPUB, or HTML.
-rw-r--r--Makefile5
m---------docs-resources0
2 files changed, 4 insertions, 1 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
-Subproject 7a6ceaccd2cc0a8bb1fedf57a232af028afc0b9
+Subproject 35203a4f123d0be162b6b5ea213a657b594f8c3