[armedbear-cvs] r13802 - trunk/abcl/doc/manual

rschlatte at common-lisp.net rschlatte at common-lisp.net
Wed Jan 25 10:45:05 UTC 2012


Author: rschlatte
Date: Wed Jan 25 02:45:05 2012
New Revision: 13802

Log:
Add Makefile for manual.

Added:
   trunk/abcl/doc/manual/Makefile
Modified:
   trunk/abcl/doc/manual/README.markdown

Added: trunk/abcl/doc/manual/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ trunk/abcl/doc/manual/Makefile	Wed Jan 25 02:45:05 2012	(r13802)
@@ -0,0 +1,12 @@
+
+all: abcl.pdf
+
+abcl.pdf: abcl.tex abcl.bib
+	pdflatex abcl.tex
+	bibtex abcl
+	makeindex abcl
+	pdflatex abcl.tex
+	pdflatex abcl.tex
+
+clean:
+	rm -f *.aux *.bbl *.blg *.idx *.ilg *.ind *.log *.out *.toc abcl.pdf

Modified: trunk/abcl/doc/manual/README.markdown
==============================================================================
--- trunk/abcl/doc/manual/README.markdown	Wed Jan 25 02:03:56 2012	(r13801)
+++ trunk/abcl/doc/manual/README.markdown	Wed Jan 25 02:45:05 2012	(r13802)
@@ -1,6 +1,8 @@
 ABCL User Manual
 ================
 
-With a suitable TexLive installed, to build simply issue:
+With a suitable TexLive installed, to build simply run `make`.  If you
+cannot run make, the following sequence of commands also gets you a pdf
+of the manual:
 
     cmd$ pdflatex abcl.tex && bibtex abcl &&  makeindex abcl && pdflatex abcl.tex && pdflatex abcl.tex




More information about the armedbear-cvs mailing list