source: trunk/abcl/doc/manual/Makefile

Last change on this file was 15067, checked in by Mark Evenson, 7 years ago

First half of User Manual edits prompted by Phillip Marek's review

ABCL/DOCUMENTATION reformatting with the only intentional function
change being the introduction of the exported INDEX function to grind
the documentation from available runtime symbols. Something is still
funky about parameter lists for generic functions and macros.

File size: 473 bytes
Line 
1
2all: abcl.pdf
3
4abcl.pdf: abcl.tex abcl.bib java.tex extensions.tex threads.tex
5  pdflatex abcl.tex
6  bibtex abcl
7  makeindex abcl
8  pdflatex abcl.tex
9  pdflatex abcl.tex
10
11#ABCL   = abcl
12ABCL  = ../../abcl
13
14# XXX TODO pare down to using --noinit
15grovel:
16  $(ABCL) --batch --noinform \
17  --eval '(require :abcl-contrib)' \
18  --eval '(asdf:make :abcl/documentation)' \
19  --eval '(abcl/documentation:index)'
20
21clean:
22  rm -f *.aux *.bbl *.blg *.idx *.ilg *.ind *.log *.out *.toc abcl.pdf
Note: See TracBrowser for help on using the repository browser.