mirror of
https://codeberg.org/openpgp/notes.git
synced 2025-09-10 11:49:40 +02:00
Add make target to rebuild (and show) epub file on change to markdown
Signed-off-by: David Runge <dave@sleepmap.de>
This commit is contained in:
parent
7e86166b9c
commit
588bd02553
1 changed files with 7 additions and 0 deletions
|
@ -7,17 +7,24 @@
|
||||||
# You can set these variables from the command line, and also
|
# You can set these variables from the command line, and also
|
||||||
# from the environment for the first two.
|
# from the environment for the first two.
|
||||||
CODESPELL ?= codespell
|
CODESPELL ?= codespell
|
||||||
|
EBOOK_VIEWER ?= ebook-viewer
|
||||||
EPUBCHECK ?= epubcheck
|
EPUBCHECK ?= epubcheck
|
||||||
SPHINXOPTS ?= -W
|
SPHINXOPTS ?= -W
|
||||||
SPHINXBUILD ?= sphinx-build
|
SPHINXBUILD ?= sphinx-build
|
||||||
LYCHEE ?= lychee
|
LYCHEE ?= lychee
|
||||||
PRINTF ?= printf
|
PRINTF ?= printf
|
||||||
|
WATCHEXEC ?= watchexec
|
||||||
SOURCEDIR = source
|
SOURCEDIR = source
|
||||||
BUILDDIR = build
|
BUILDDIR = build
|
||||||
|
|
||||||
epub-check: clean epub
|
epub-check: clean epub
|
||||||
@$(EPUBCHECK) "$(BUILDDIR)/epub/"*.epub
|
@$(EPUBCHECK) "$(BUILDDIR)/epub/"*.epub
|
||||||
|
|
||||||
|
# use watchexec to rebuild the EPUB whenever a markdown file changes
|
||||||
|
# this target kills *any* open instance of calibre's ebook-viewer, that is currently showing OpenPGPforapplicationdevelopers.epub
|
||||||
|
epub-watch:
|
||||||
|
@$(WATCHEXEC) --shell bash -e css,md 'make clean epub && ev_pid="$$(pgrep -af "^python3.*ebook-viewer.*OpenPGPforapplicationdevelopers" | cut -f1 -d " ")" && if [[ -n "$$ev_pid" ]]; then kill -9 "$$ev_pid"; fi && $(EBOOK_VIEWER) $(BUILDDIR)/epub/OpenPGPforapplicationdevelopers.epub &'
|
||||||
|
|
||||||
# Put it first so that "make" without argument is like "make help".
|
# Put it first so that "make" without argument is like "make help".
|
||||||
help:
|
help:
|
||||||
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue