blob: 9638a4f0de0e3a8ce90e17be991a29d3dc18bec0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
|