Skip to content
Snippets Groups Projects
Makefile 340 B
Newer Older
  • Learn to ignore specific revisions
  • Andreas Schärtl's avatar
    Andreas Schärtl committed
    TEX_SOURCES = report.tex abstract.tex intro.tex endpoints.tex applications.tex
    
    
    report.pdf: $(TEX_SOURCES) references.bib
    
    	chronic pdflatex $<
    	chronic biber $(basename $<)
    	chronic pdflatex $<
    
    view: report.pdf
    	mupdf $<
    
    clean:
    	rm -f report.pdf
    	rm -f *.aux *.bbl *.blg *.dvi *.log *.pdf *.out
    	rm -f *.bcf *.run.xml
    
    .PHONY: view clean