#! gnumake # HEAD = gluex_mou # # PDF = *.pdf # DOC = *.tex # CNT = Makefile all: gluex_mou gluex_mou_cmu gluex_mou_uconn gluex_mou: pdflatex $(HEAD).tex pdflatex $(HEAD).tex gluex_mou_cmu: pdflatex $@.tex pdflatex $@.tex gluex_mou_uconn: pdflatex $@.tex pdflatex $@.tex tarball: rm -f $(HEAD).tar.gz tar cfz $(HEAD).tar.gz $(DOC) $(CNT) $(PDF) clean: @rm -f *.dvi *.ps *~ *.aux *.log *.lot *.lof *.toc distclean: @rm -f *.dvi *.ps *~ *.aux *.log *.lot *.lof *.toc @rm -f $(HEAD).tar.gz @rm -f $(HEAD).pdf @rm -f $(HEAD)_cmu.pdf @rm -f $(HEAD)_uconn.pdf