aboutsummaryrefslogtreecommitdiff
path: root/doc/Makefile
diff options
context:
space:
mode:
authorPeter Carbonetto2017-05-24 22:13:22 -0500
committerPeter Carbonetto2017-05-24 22:13:22 -0500
commit8dcaade55867f0459122431872289758fa1116bb (patch)
tree67a5e44ceb0c4fe11e47b0ed27e4b22653d5d4fc /doc/Makefile
parent7e9be21ef63fdbf3aa882e43e29d9bc9f43607a8 (diff)
downloadpangemma-8dcaade55867f0459122431872289758fa1116bb.tar.gz
Added doc/Makefile.
Diffstat (limited to 'doc/Makefile')
-rw-r--r--doc/Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/Makefile b/doc/Makefile
new file mode 100644
index 0000000..9638a4f
--- /dev/null
+++ b/doc/Makefile
@@ -0,0 +1,19 @@
+# A Makefile for generating the PDF from Latex. Simply type 'make' in
+# this directory to compile the Latex into a single PDF. Type 'make
+# clean' to discard the output files except for the generated PDF.
+
+# RULES
+# -----
+all: manual.pdf
+
+# Create the PDF file.
+manual.pdf : manual.tex manual.bib
+ pdflatex manual
+ bibtex manual
+ pdflatex manual
+ pdflatex manual
+
+clean:
+ rm -f manual.aux manual.bbl manual.blg
+ rm -f manual.log manual.out manual.toc
+