Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2023-03-25 11:58:14 +03:00
parent 0390f3adfd
commit 85d1e5f013
2 changed files with 10 additions and 1 deletions

View File

@ -269,6 +269,9 @@ version:
#----------------------------------------------------------------------
# Main targets...
.PHONY: dep
dep: DEPENDS.txt
.PHONY: pdf
pdf: $(MODULE).pdf
@ -342,7 +345,7 @@ tag:
.PHONY: all
all: pdf DEPENDS.txt
all: pdf dep
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

View File

@ -389,6 +389,12 @@ $ make-spreads.sh -c <path> ..
Extract the documentation from photobook.cls which is used to build the
photobook.pdf reference manual.
This makes it possible to maintain the documentation and code in a
single file retaining human readability.
The format is inspired by LaTeX's .dxt format but is far simpler.
```shell
$ cls2tex.sh --help
```