
.PHONY: all clean clean-out
all: thesis.pdf clean-out

%.pdf: %.tex $(wildcard src/*)
	latexmk -pdf $<

clean:
	latexmk -C

clean-out:
	latexmk -c
