mirror of
https://github.com/yakimka/python_interview_questions.git
synced 2025-12-16 11:07:03 +03:00
11 lines
334 B
Makefile
11 lines
334 B
Makefile
questions.epub: questions.md metadata.txt book_res/* attachments/* Makefile ## Generate epub book
|
|
pandoc --toc --toc-depth=6 -o questions.epub metadata.txt questions.md
|
|
|
|
.PHONY: toc
|
|
toc: ## Generate TOC from questions.md
|
|
python3 generate_toc.py
|
|
|
|
.PHONY: toc
|
|
toc-check: ## Check that toc is actual
|
|
python3 generate_toc.py --check
|