view docs/Makefile @ 524:a4a58c4c7a41

Fix parsing {} macro argument expansion sequences {nn} sequences were consuming one too many characters which caused unpredictable and definitely incorrect behaviour if the {nn} sequence terminated the line. It also caused the next character after the } to be ignored if used in the middle of an argument sequence.
author William Astle <lost@l-w.ca>
date Tue, 25 Jan 2022 21:25:12 -0700
parents fc166b3bbae3
children
line wrap: on
line source

all:
	rm -f manual/*.pdf manual/*.html
	docbook2html -o manual manual.docbook.sgml
	docbook2html -u manual.docbook.sgml && mv manual.docbook.html manual/manual.html
	docbook2pdf -u manual.docbook.sgml && mv manual.docbook.pdf manual/manual.pdf
	rm -f manual.docbook.html

maint:
	hg rm --force manual/* || true
	$(MAKE) all
	hg add manual/*