LATEX = /usr/bin/latex DVIPS = /usr/bin/dvips .SUFFIXES : .dvi .tex .ps .html .pdf # latex2html options: # -noaddress : no name of creator on each page # -no_footnode : place the footnotes on the same page as the reference # -info 0 : no "info" page (it's useless) # -split 0 : keep all sections in one file # OPTS = -noaddress -no_footnode -info 0 -split 0 \ -up_title "Readings that Matter to Me" \ -up_url "http://grace.evergreen.edu/~arunc/texts/readings.htm" # -up_title "FoPA Home Page" \ # -up_url "http://academic.evergreen.edu/curricular/fopa/" .tex.dvi : $(LATEX) $* .dvi.ps : $(DVIPS) -D 600 -o $*.ps $* if [ $$? -eq 0 ] ; then $(RM) *.aux *.log *.dvi ; fi .tex.html : latex2html $(OPTS) $*.tex .tex.pdf : $(LATEX) $* $(LATEX) $* dvipdf $* if [ $$? -eq 0 ] ; then $(RM) $*.aux $*.log $*.dvi ; fi tolerance.ps : latex tolerance latex tolerance dvips -D 600 -o tolerance.ps tolerance if [ $$? -eq 0 ] ; then $(RM) *.aux *.log *.dvi ; fi tolerance.pdf : tolerance.ps musicSyl.html : latex2html -noaddress -no_footnode -info 0 -up_title "FoPA Home Page" \ -up_url "http://academic.evergreen.edu/curricular/fopa/" musicSyl.tex clean : $(RM) *.ps *.aux *.log *.dvi