# makefile to create a thesis from tex TEX=latex DVIPS=dvips DVIPDF=dvipdf TEXFILES= chap1_Introduction.tex chap2_Background.tex chap3_Methods.tex \ chap4_Algorithms.tex chap5_Results.tex chap6_Conclusion.tex .SUFFIXES: .SUFFIXES: .ps .pdf .tex .dvi .tex.dvi: $(TEX) $(TEXFLAGS) $< .dvi.ps: $(DVIPS) $< -o $@ .dvi.pdf: $(DVIPDF) $< all: thesis.ps thesis.pdf clean: rm -f *.dvi *.pdf *.ps *.log