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 "FoPA Home Page" \ # -up_url "http://academic.evergreen.edu/curricular/fopa/" 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_url "http://academic.evergreen.edu/a/arunc/compmusic/" .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 : pdflatex $* mv -vf $*.pdf $* .ps.pdf : ps2pdf $*.ps mv -vf $*.pdf $* musicSyl.html : latex2html -noaddress -no_footnode -info 0 -up_title "FoPA Home Page" \ -up_url "http://academic.evergreen.edu/curricular/fopa/" musicSyl.tex compmusic : latex2html $(OPTS) benjamin.tex latex2html $(OPTS) adorno.tex latex2html $(OPTS) hork.tex latex2html $(OPTS) cage1.tex latex2html $(OPTS) cage3.tex latex2html $(OPTS) boulez.tex latex2html $(OPTS) koenig.tex clean : $(RM) *.ps *.aux *.log *.dvi