Skip to content
Snippets Groups Projects
Makefile 256 B
report.pdf: report.tex 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