1# =====================================================================
2# Makefile for the quotients paper
3# =====================================================================
4
5default: all
6
7clean:
8	rm -f *.dvi *.aux *.toc *.log *.idx *.ilg *.ind quotient.ps quotient.pdf
9
10quotient.dvi: quotient.tex
11	latex quotient.tex
12	latex quotient.tex
13
14quotient.ps: quotient.dvi
15	dvips -t letter quotient.dvi -o
16
17quotient.pdf: quotient.tex
18#	ps2pdf quotient.ps
19	pdflatex quotient.tex
20
21all: quotient.ps quotient.pdf
22