.PHONY: clean

all: paper.pdf

paper.pdf: paper.tex $(wildcard *.tikz)
	latexmk -pdf

clean:
	xargs -I '{}' bash -c "rm -f {}" < .gitignore
