blob: 2cd783310deb89db929b17b35bc64da928525ab3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Originally written by Thomas Esser.
# Public domain.
#
default: pdf clean
TETEXDOC.pdf: TETEXDOC.tex
pdflatex TETEXDOC
bibtex TETEXDOC
pdflatex TETEXDOC
pdflatex TETEXDOC
thumbpdf TETEXDOC
pdflatex TETEXDOC
clean:
rm -f TETEXDOC.aux TETEXDOC.log TETEXDOC.lot thumb???.png TETEXDOC.out TETEXDOC.tex~ TETEXDOC.toc thumbdta.tex thumbpdf.log thumbpdf.pdf TETEXDOC.blg TETEXDOC.bbl TETEXDOC.tpt auto
veryclean: clean
rm -f TETEXDOC.pdf
pdf: TETEXDOC.pdf
|