summaryrefslogtreecommitdiff
path: root/Makefile
blob: de4609257286e092a210174a54d543c62e991862 (plain) (blame)
1
2
3
4
5
6
7
8
9
default: cv.pdf

%.aux %.log %.out %.pdf: %.latex
	pdflatex $<

clean:
	rm -f *.aux *.log *.out *.pdf

.PHONY: clean default