Add epubcheck target for local EPUB validation (#9)

Backported from em_book's CI. Adds a 'make epubcheck' target that builds
the EPUB (via its dependency) and validates it with EPUBCheck, so authors
can catch EPUB issues locally before publishing.

- New epubcheck target depending on the EPUB path
- Document it in the README
- Add .PHONY declarations

Co-authored-by: Dunya Kirkali <exedev@writting.exe.xyz>
Co-authored-by: Shelley <shelley@exe.dev>
This commit is contained in:
Dunya Kirkali
2026-08-08 22:05:23 +02:00
committed by GitHub
parent 0af9d53b0f
commit 59ff4fc3a3
2 changed files with 15 additions and 0 deletions

View File

@@ -13,6 +13,8 @@ EPUB_PATH := output/$(EPUB_NAME)
ASCIIDOC_FLAGS = \
--doctype book
.PHONY: all count clean lint epubcheck
all: $(PDF_PATH) $(EPUB_PATH)
$(PDF_PATH): $(ASCIIDOC_FILES) $(FIGURES) Makefile metadata.yaml | output
@@ -30,6 +32,9 @@ $(EPUB_PATH): $(ASCIIDOC_FILES) $(FIGURES) Makefile metadata.yaml | output
count:
wc -w source/*
epubcheck: $(EPUB_PATH)
epubcheck $(EPUB_PATH)
output:
mkdir output