# usage: make help

.PHONY: help spell prep-html-files html html-local pdf epub upload fix-tables check-links-local check-links-all clean
.DEFAULT_GOAL := help

help: ## this help
	@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n  make \033[36m<target>\033[0m\n"} /^[a-zA-Z_-]+:.*?##/ { printf "  \033[36m%-22s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)

# pip install codespell
spell: ## spellcheck
	@codespell --write-changes --skip "*.pdf" --skip "*.json"

prep-html-files: ## prepare html-files
	echo book-front.html > chapters-html.txt
	perl -ne 's|\.md|.html|; print' chapters-md.txt >> chapters-html.txt

html: prep-html-files ## make html version w/ scripts linking to their url at my github repo
	python build/mdbook/md-to-html.py

html-local: prep-html-files ## make html version w/ scripts remaining local
	python build/mdbook/md-to-html.py --local

pdf: html ## make pdf version (from html files)
	prince --no-author-style -s build/prince_style.css --pdf-title="Stas Bekman - The Art of Debugging ($$(date))" -o out1.pdf $$(cat chapters-html.txt | tr "\n" " ")
	pdftk out1.pdf dump_data output pdf-bookmarks.txt
	pdftk out1.pdf cat 2-end 1 output out2.pdf
	pdftk images/The-Art-of-Debugging-book-cover.pdf out2.pdf output out3.pdf
	pdftk out3.pdf update_info pdf-bookmarks.txt output "Stas Bekman - The Art of Debugging.pdf"

epub: html ## make epub version (from html files)
	python build/mdbook/preprocess-html-for-epub.py && \
	pandoc --from html --to epub3 \
		--output "Stas Bekman - The Art of Debugging.epub" \
		--metadata title="The Art of Debugging" \
		--metadata author="Stas Bekman" \
		--metadata date="$$(date +%Y-%m-%d)" \
		--metadata language="en" \
		--epub-cover-image=images/The-Art-of-Debugging-book-cover.png \
		--resource-path=.:$$(cat chapters-html.txt | xargs -n1 dirname | awk '!seen[$$0]++' | tr "\n" ":") \
		$$(cat chapters-html.txt | tr "\n" " ")

upload: pdf epub ## upload pdf to the hub
	cp "Stas Bekman - The Art of Debugging.pdf" the-art-of-debugging-book/
	cp "Stas Bekman - The Art of Debugging.epub" the-art-of-debugging-book/
	cd the-art-of-debugging-book/ && git commit -m "new version" "Stas Bekman - The Art of Debugging.pdf" "Stas Bekman - The Art of Debugging.epub" && git push

fix-tables: ## fix markdown tables so they render (join multi-line headers, add missing blank lines, realign pipes)
	python build/fix-tables.py

check-links-local: html-local ## check local links
	linkchecker --config build/linkcheckerrc $$(cat chapters-html.txt | tr "\n" " ") | tee linkchecker-local.txt

check-links-all: html ## check all links including external ones
	linkchecker --config build/linkcheckerrc $$(cat chapters-html.txt | tr "\n" " ") --check-extern --user-agent="Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:121.0) Gecko/20100101 Firefox/121.0" | tee linkchecker-all.txt

clean: ## remove build files
	find . -name "*html" -exec rm {} \;
