# Paper build targets

.PHONY: all figures pdf clean

all: figures pdf

figures:
	python3 export_figures.py

pdf: figures
	pdflatex -interaction=nonstopmode main.tex
	pdflatex -interaction=nonstopmode main.tex  # second pass for references

clean:
	rm -f main.aux main.log main.out main.bbl main.blg main.pdf
	rm -rf figures/
