annotate docs/Makefile @ 219:afd50d6b4113
Add --preprocess option
Add --preprocess option which expands macros, resolves conditions, and
resolves include files if possible. If an include file is not available, it
the include directive is retained.
author |
William Astle <lost@l-w.ca> |
date |
Sun, 10 Jun 2012 18:24:31 -0600 |
parents |
411ef9735264 |
children |
e4ad15af2e93 |
rev |
line source |
169
|
1 all:
|
170
|
2 hg rm manual/* || true
|
|
3 rm -f manual/*.pdf manual/*.html
|
169
|
4 docbook2html -o manual manual.docbook.sgml
|
|
5 docbook2html -u manual.docbook.sgml && mv manual.docbook.html manual/manual.html
|
|
6 docbook2pdf -u manual.docbook.sgml && mv manual.docbook.pdf manual/manual.pdf
|
174
|
7 rm -f manual.docbook.html
|
169
|
8 hg add manual/*
|