Andrew Davis added file Makefile  over 9 years ago

Commit id: a13686dbde55c2a008f7531997e9ae219ef590fb

deletions | additions      

         

# Name of manuscript  manuscript = template  # PdfLaTeX compilation options  latexopt = -halt-on-error -file-line-error -output-directory=build  #=================================================================  # Generate PDF of manuscript using PdfLaTeX  #=================================================================  all: $(manuscript).pdf  $(manuscript).pdf: $(manuscript).tex references.bib  mkdir -p build  pdflatex $(latexopt) $(manuscript)  bibtex -terse build/$(manuscript)  pdflatex $(latexopt) $(manuscript)  pdflatex $(latexopt) $(manuscript)  #=================================================================  # Other  #=================================================================  clean:  rm -fr build  .PHONY: all clean